Abstract activation and implement softmax

This commit is contained in:
2024-03-17 18:37:15 +01:00
parent b1621819ca
commit 42d646750b
19 changed files with 370 additions and 205 deletions

View File

@@ -24,7 +24,7 @@ Convolutional Neural Network inference library running on CUDA.
- [CUDA](https://developer.nvidia.com/cuda-downloads)
- [Google Test](https://github.com/google/googletest) (for testing only)
**build and test**
**build**
```sh
mkdir build
@@ -33,8 +33,9 @@ cmake -S ..
make
```
Run tests
**build and run tests**
```sh
make test_main
./test/test_main
```