An open API service indexing awesome lists of open source software.

https://github.com/erio-harrison/write-you-a-dl-fram

Build a deep learning framework step by step
https://github.com/erio-harrison/write-you-a-dl-fram

cpp deeplearning

Last synced: about 1 year ago
JSON representation

Build a deep learning framework step by step

Awesome Lists containing this project

README

          

# Write you a deep learning framework

Refer to:

https://github.com/zjhellofss/KuiperInfer

https://github.com/bluealert/MetaNN-book

# Still working

```bash
sudo apt-get install libbenchmark-dev
```

```bash
g++ tensor_benchmark.cpp -o tensor_benchmark -lbenchmark -pthread -march=native -mavx
```

```bash
g++ -std=c++17 -isystem /usr/include/gtest -pthread tensor_test.cpp -o tensor_test -lgtest -lgtest_main -mavx
```

```bash
g++ -std=c++17 -isystem /usr/include/gtest -pthread tensor_multithreading_test.cpp -o tensor_multithreading_test -lgtest -lgtest_main -mavx
```