diff options
| author | Tor Aamodt <[email protected]> | 2018-03-28 16:16:38 -0700 |
|---|---|---|
| committer | Tor Aamodt <[email protected]> | 2018-03-28 16:16:38 -0700 |
| commit | c9cc4281bf84ad6cff77d20389b59d14a534ad6b (patch) | |
| tree | 51c534614fa20be2bbcca916c1bdf55bfb272eca | |
| parent | d0ee86a0d39f9dfa1eba13ea6cca1b1d0e86523b (diff) | |
(attempt to) fix compile error in last checkin
| -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) |
