Skip to content

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

License

Notifications You must be signed in to change notification settings

cjia4/cuda_hook

 
 

Repository files navigation

CUDA Hook

Hooked CUDA-related dynamic libraries by using automated code generation tools. Based on this, you can easily obtain the CUDA API called by the CUDA program, and you can also hijack the CUDA API to insert custom logic.

It implements an ingenious tool to automatically generate code that hooks the CUDA api with CUDA native header files, and is extremely practical and extensible.

At present, the hooking of dynamic libraries such as cuda driver, nvml, cuda runtime, cudnn, cublas, cublasLt, cufft, nvtx, nvrtc, curand, cusparse, cusolver, nvjpeg and nvblas has been completed, and it can also be easily extended to the hooking of other cuda dynamic libraries.

Support Dynamic Libraries

  • CUDA Driver: libcuda.so
  • NVML: libnvidia-ml.so
  • CUDA Runtime: libcudart.so
  • CUDNN: libcudnn.so
  • CUBLAS: libcublas.so
  • CUBLASLT: libcublasLt.so
  • CUFFT: libcufft.so
  • NVTX: libnvToolsExt.so
  • NVRTC: libnvrtc.so
  • CURAND: libcurand.so
  • CUSPARSE: libcusparse.so
  • CUSOLVER: libcusolver.so
  • NVJPEG: libnvjpeg.so
  • NVBLAS: libnvblas.so

Compile

Environment

  • OS: Linux
  • Cmake Version: >= 3.8
  • GCC Version: >= 4.8
  • CUDA Version: 11.4 (best)
  • CUDA Driver Version: 470.129.06 (best)
  • CUDNN Version: 7.6.5 (best)

Clone

git clone https://github.com/Bruce-Lee-LY/cuda_hook.git

Build

cd cuda_hook
./build.sh -t Release -s ON -b OFF
./build.sh -t Debug -s OFF -b ON

Run Sample

./run_sample.sh

Tools

Code Generate

Use CUDA native header files to automatically generate code that hooks CUDA API.

cd tools/code_generate
./code_generate.sh

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 60.0%
  • C++ 39.7%
  • Other 0.3%