# NN-CUDA-Example **Repository Path**: milixiang/NN-CUDA-Example ## Basic Information - **Project Name**: NN-CUDA-Example - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-03-30 - **Last Updated**: 2021-06-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Neural Network CUDA Example ![logo](./image/logo.png) Several simple examples for neural network toolkits (PyTorch, TensorFlow, etc.) calling custom CUDA operators. We provide several ways to compile the CUDA kernels and their cpp wrappers, including jit, setuptools and cmake. We also provide several python codes to call the CUDA kernels, including kernel time statistics and model training. *For more accurate time statistics, you'd best use **nvprof** or **nsys** to run the code.* ## Environments * NVIDIA Driver: 418.116.00 * CUDA: 11.0 * Python: 3.7.3 * PyTorch: 1.7.0+cu110 * TensorFlow: 2.4.1 * CMake: 3.16.3 * Ninja: 1.10.0 * GCC: 8.3.0 *Cannot ensure successful running in other environments.* ## Code structure ```shell ├── include │ └── add2.h # header file of add2 cuda kernel ├── kernel │ └── add2_kernel.cu # add2 cuda kernel ├── pytorch │ ├── add2_ops.cpp # torch wrapper of add2 cuda kernel │ ├── time.py # time comparison of cuda kernel and torch │ ├── train.py # training using custom cuda kernel │ ├── setup.py │ └── CMakeLists.txt ├── tensorflow │ ├── add2_ops.cpp # tensorflow wrapper of add2 cuda kernel │ ├── time.py # time comparison of cuda kernel and tensorflow │ ├── train.py # training using custom cuda kernel │ └── CMakeLists.txt ├── LICENSE └── README.md ``` ## PyTorch ### Compile cpp and cuda **JIT** Directly run the python code. **Setuptools** ```shell python3 pytorch/setup.py install ``` **CMake** ```shell mkdir build cd build cmake ../pytorch make ``` ### Run python **Compare kernel running time** ```shell python3 pytorch/time.py --compiler jit python3 pytorch/time.py --compiler setup python3 pytorch/time.py --compiler cmake ``` **Train model** ```shell python3 pytorch/train.py --compiler jit python3 pytorch/train.py --compiler setup python3 pytorch/train.py --compiler cmake ``` ## TensorFlow ### Compile cpp and cuda **CMake** ```shell mkdir build cd build cmake ../tensorflow make ``` ### Run python **Compare kernel running time** ```shell python3 tensorflow/time.py --compiler cmake ``` **Train model** ```shell python3 tensorflow/train.py --compiler cmake ``` ## Implementation details (in Chinese) [PyTorch自定义CUDA算子教程与运行时间分析](https://godweiyang.com/2021/03/18/torch-cpp-cuda) [详解PyTorch编译并调用自定义CUDA算子的三种方式](https://godweiyang.com/2021/03/18/torch-cpp-cuda-2) [三分钟教你如何PyTorch自定义反向传播](https://godweiyang.com/2021/03/18/torch-cpp-cuda-3) ## F.A.Q **Q.** ImportError: libc10.so: cannot open shared object file: No such file or directory **A.** You must do `import torch` before `import add2`.