Installing DeepCL on a Macbook Air (2013) with Intel HD 5000
So I was looking for an OpenCL DeepLearning Library...
I found DeepCL and as a bonus, it has a python library! w00t!
With the help of the project owner, I was able to install the library...
Prerequisites:
OSX Mavericks (my installation... not sure how it will fare for newer versions of OSX)
Steps (copied from the GitHub page issue #32):
git clone -- recursive https://github/hughperkins/DeepCL.git
cd DeepCL
mkdir build
cd build
ccmake ..
# in ccmake:
# - press 'c'/configure
# - choose the options
# - 'c' /configure again
# - press 'g' / generate
## at this point my installation has a warning
# - press 'e'/exit
# - press 'q' /quit
make -j 4 install
export DYLD_LIBRARY_PATH=../dist/lib
export LD_LIBRARY_PATH=../dist/lib
export DYLD_FALLBACK_LIBRARY_PATH=../dist/lib
./deepcl_unittests
Then you can install from pip...
pip install --pre --upgrade DeepCL
I found DeepCL and as a bonus, it has a python library! w00t!
With the help of the project owner, I was able to install the library...
Prerequisites:
OSX Mavericks (my installation... not sure how it will fare for newer versions of OSX)
Steps (copied from the GitHub page issue #32):
git clone -- recursive https://github/hughperkins/DeepCL.git
cd DeepCL
mkdir build
cd build
ccmake ..
# in ccmake:
# - press 'c'/configure
# - choose the options
# - 'c' /configure again
# - press 'g' / generate
## at this point my installation has a warning
# - press 'e'/exit
# - press 'q' /quit
make -j 4 install
export DYLD_LIBRARY_PATH=../dist/lib
export LD_LIBRARY_PATH=../dist/lib
export DYLD_FALLBACK_LIBRARY_PATH=../dist/lib
./deepcl_unittests
Then you can install from pip...
pip install --pre --upgrade DeepCL
Comments
Post a Comment