| 115 | } |
| 116 | |
| 117 | CUresult |
| 118 | cuModuleGetFunction(CUfunction* hfunc, CUmodule hmod, const char* name) |
| 119 | { |
| 120 | // TODO |
| 121 | static unsigned char zeros[256] = { 0 }; |
| 122 | *hfunc = (CUfunction)zeros; |
| 123 | return CUDA_SUCCESS; |
| 124 | } |
| 125 | |
| 126 | CUresult |
| 127 | cuLaunchKernel(CUfunction f, |
nothing calls this directly
no outgoing calls
no test coverage detected