cuda_hook icon indicating copy to clipboard operation
cuda_hook copied to clipboard

Hooked CUDA-related dynamic libraries by using automated code generation tools.

Results 3 cuda_hook issues
Sort by recently updated
recently updated
newest added

When execute tensorflow minist train task, occur the problem, 'Check failed: cublas_handle'. It caused by dlopen, the complete command is `dlopen("/usr/local/cuda/targets/x86_64-linux/lib/libcublas.so", RTLD_NOW | RTLD_LOCAL)`. And error throwed by dlopen is...

Recently, I have been studying this project and noticed that you manually removed the interception of `cuGetProcAddress`. May I ask why? https://github.com/Bruce-Lee-LY/cuda_hook/blob/fc4b02e14889bdbcc973fddc8d03daaa99e0433b/src/cuda/cuda_hook.cpp#L3313-L3321

I want to intercept more CUDA APIs through hooks, so I would like to use the generate_code.py in your repository to generate hook function source code for all .h files...