client icon indicating copy to clipboard operation
client copied to clipboard

Remove unnecessary linking of CUDA Runtime library

Open matthewkotila opened this issue 4 months ago • 0 comments

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.

matthewkotila avatar Oct 24 '24 15:10 matthewkotila