Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kleisauke/pytorch-mkldnn-issue
https://github.com/kleisauke/pytorch-mkldnn-issue
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kleisauke/pytorch-mkldnn-issue
- Owner: kleisauke
- Created: 2018-11-01T19:14:33.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T19:17:24.000Z (about 6 years ago)
- Last Synced: 2024-10-30T22:44:25.623Z (about 2 months ago)
- Language: C++
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pytorch-mkldnn-issue
### Build PyTorch using ExternalProject
```bash
export MAKEFLAGS=-j4mkdir build && cd build
cmake3 -DCMAKE_BUILD_TYPE=Release -DBUILD_TORCH=ON ..
sudo make
```### Build CartPole
```bash
# Remove old build directory
rm -rf build/mkdir build && cd build
cmake3 -DCMAKE_BUILD_TYPE=Release -DBUILD_TORCH=OFF ..
sudo make
```