client
client copied to clipboard
Remove unnecessary linking of CUDA Runtime library
The Triton C++ client libraries do not actually use symbols in the CUDA Runtime library (libcudart.so
).
So there's no need to target_link_libraries()
to CUDA::cudart
.
All they needed was access to #include <cuda_runtime_api.h>
.
So I added target_include_directories()
s for that.