SYCL tensorflow on arch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yaourt computecpp | |
# register and manually download into temp build folder https://developer.codeplay.com/computecppce/latest/download | |
sudo pacman -S bazel python-numpy python-pip python-wheel | |
wget https://codeload.github.com/lukeiwanski/tensorflow/zip/dev/amd_gpu | |
unzip amd_gpu | |
cd tensorflow-dev-amd_gpu | |
export TF_NEED_JEMALLOC=1 | |
export TF_NEED_GCP=0 | |
export TF_NEED_HDFS=0 | |
export TF_NEED_S3=0 | |
export TF_ENABLE_XLA=1 | |
export TF_NEED_GDR=0 | |
export TF_NEED_VERBS=0 | |
export TF_NEED_OPENCL_SYCL=1 | |
export TF_NEED_COMPUTECPP=1 | |
export TF_NEED_CUDA=0 | |
export TF_NEED_MPI=0 | |
export TF_SET_ANDROID_WORKSPACE=0 | |
./configure | |
# https://developer.codeplay.com/computecppce/latest/getting-started-with-tensorflow#BuildingTensorflowSourceWithComputecpp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment