Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kleisauke/pytorch-mkldnn-issue


https://github.com/kleisauke/pytorch-mkldnn-issue

Last synced: 8 days ago
JSON representation

Awesome Lists containing this project

README

        

# pytorch-mkldnn-issue

### Build PyTorch using ExternalProject
```bash
export MAKEFLAGS=-j4

mkdir 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
```