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
- Host: GitHub
- URL: https://github.com/erio-harrison/write-you-a-dl-fram
- Owner: Erio-Harrison
- Created: 2024-10-10T04:59:48.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-04T12:01:52.000Z (over 1 year ago)
- Last Synced: 2025-03-22T12:47:52.509Z (over 1 year ago)
- Topics: cpp, deeplearning
- Language: C++
- Homepage:
- Size: 854 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```