File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed
Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,6 @@ or run manually:
7777
7878``` bash
7979docker run --rm -it -v ${PWD} :/addons -w /addons tensorflow/tensorflow:custom-op-ubuntu16 /bin/bash
80- pip install --upgrade pip # Pip must be upgraded to install manylinux2010 pkg
8180./configure.sh # Links project with TensorFlow dependency
8281
8382bazel test -c opt -k \
@@ -95,7 +94,6 @@ or run manually:
9594
9695``` bash
9796docker run --runtime=nvidia --rm -it -v ${PWD} :/addons -w /addons tensorflow/tensorflow:custom-op-gpu-ubuntu16 /bin/bash
98- pip install --upgrade pip # Pip must be upgraded to install manylinux2010 pkg
9997./configure.sh # Links project with TensorFlow dependency
10098
10199bazel test -c opt -k \
Original file line number Diff line number Diff line change 1919if [[ $( uname) == " Darwin" ]]; then
2020 CMD=" delocate-wheel -w wheelhouse"
2121else
22- apt-get -y -qq update && apt-get -y -qq install patchelf
23- pip3 install auditwheel
2422 LD_PATH=" $( cat .bazelrc | grep TF_SHARED_LIBRARY_DIR | sed ' s/"//g' | awk -F' =' ' {print $2}' ) "
2523 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH :$LD_PATH
2624 CMD=" auditwheel repair --plat manylinux2010_x86_64"
Original file line number Diff line number Diff line change @@ -36,11 +36,6 @@ if [[ ! -d "tensorflow_addons" ]]; then
3636 exit 1
3737fi
3838
39- # Download buildifier.
40- wget https://github.com/bazelbuild/buildtools/releases/download/0.4.5/buildifier
41- chmod +x buildifier
42- sudo mv buildifier /usr/local/bin/.
43-
4439# Install python dependencies:
4540CI_REQUIREMENT=" $SCRIPT_DIR /ci_requirements.txt"
4641pip install ${QUIET_FLAG} -r ${CI_REQUIREMENT}
You can’t perform that action at this time.
0 commit comments