| 106 | } |
| 107 | |
| 108 | CUresult |
| 109 | cuModuleLoadData(CUmodule* module, const void* image) |
| 110 | { |
| 111 | // TODO |
| 112 | static unsigned char zeros[256] = { 0 }; |
| 113 | *module = (CUmodule)zeros; |
| 114 | return CUDA_SUCCESS; |
| 115 | } |
| 116 | |
| 117 | CUresult |
| 118 | cuModuleGetFunction(CUfunction* hfunc, CUmodule hmod, const char* name) |
nothing calls this directly
no outgoing calls
no test coverage detected