hughperkins / tf-coriander

OpenCL 1.2 implementation for Tensorflow
Apache License 2.0
791 stars 90 forks source link

Install from source fix #14

Closed Whytehorse closed 7 years ago

Whytehorse commented 7 years ago

The instructions have a step as follows:

build cuda-on-cl

pushd third_party/cuda-on-cl make -j 4 sudo make install popd

But it should be

build cuda-on-cl

pushd third_party/cuda-on-cl mkdir build cd build cmake .. make -j 4 sudo make install popd

Whytehorse commented 7 years ago

I abandoned these instructions and used the tensorflow instructions but just modified the repo to this one. I think the docs need a bit of work.