Closed Whytehorse closed 7 years ago
The instructions have a step as follows:
pushd third_party/cuda-on-cl make -j 4 sudo make install popd
But it should be
pushd third_party/cuda-on-cl mkdir build cd build cmake .. make -j 4 sudo make install popd
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.
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