Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/godweiyang/nn-cuda-example
Several simple examples for popular neural network toolkits calling custom CUDA operators.
https://github.com/godweiyang/nn-cuda-example
cpp cuda neural-network python pytorch tensorflow
Last synced: about 17 hours ago
JSON representation
Several simple examples for popular neural network toolkits calling custom CUDA operators.
- Host: GitHub
- URL: https://github.com/godweiyang/nn-cuda-example
- Owner: godweiyang
- License: apache-2.0
- Created: 2021-03-18T13:27:51.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-29T10:10:08.000Z (over 3 years ago)
- Last Synced: 2024-12-15T18:05:04.753Z (8 days ago)
- Topics: cpp, cuda, neural-network, python, pytorch, tensorflow
- Language: Python
- Homepage:
- Size: 120 KB
- Stars: 1,365
- Watchers: 9
- Forks: 190
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
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/21/torch-cpp-cuda-2)
[三分钟教你如何PyTorch自定义反向传播](https://godweiyang.com/2021/03/24/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`.> **Q.** tensorflow.python.framework.errors_impl.NotFoundError: build/libadd2.so: undefined symbol: _ZTIN10tensorflow8OpKernelE
**A.** Check if `${TF_LFLAGS}` in `CmakeLists.txt` is correct.