diff options
| author | Tor Aamodt <[email protected]> | 2018-03-28 20:37:30 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2018-03-28 20:37:30 -0700 |
| commit | 2221d208a745a098a60b0d24c05007e92aaba092 (patch) | |
| tree | 51c534614fa20be2bbcca916c1bdf55bfb272eca /libcuda/cuda_runtime_api.cc | |
| parent | 635366fe3e9b596318647b9c5bcdd546c522d52a (diff) | |
| parent | c9cc4281bf84ad6cff77d20389b59d14a534ad6b (diff) | |
Merge pull request #64 from aamodt/dev
fix compile error
Diffstat (limited to 'libcuda/cuda_runtime_api.cc')
| -rw-r--r-- | libcuda/cuda_runtime_api.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcuda/cuda_runtime_api.cc b/libcuda/cuda_runtime_api.cc index b7f25bf..9bdb993 100644 --- a/libcuda/cuda_runtime_api.cc +++ b/libcuda/cuda_runtime_api.cc @@ -1856,11 +1856,12 @@ void** CUDARTAPI __cudaRegisterFatBinary( void *fatCubin ) } return (void**)fat_cubin_handle; } - #endif +#else else { printf("ERROR ** __cudaRegisterFatBinary() needs to be updated\n"); abort(); } +#endif } void __cudaUnregisterFatBinary(void **fatCubinHandle) |
