bare bones neural network library with CPU and GPU support.
Only Linux is supported for now.
for both cpu and gpu, the following instructions apply
assuming you are building for gpu:
- make a build directory inside gpu/
mkdir gpu/build
cd gpu/build
- You can use whatever build system you want, for ninja:
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug
ninja
- a main executable should now be in your build/ directory