File tree Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Expand file tree Collapse file tree 5 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -e
4+ set -u
45
5- export LD_LIBRARY_PATH=lib:${LD_LIBRARY_PATH}
6+ export LD_LIBRARY_PATH=" lib:${LD_LIBRARY_PATH:- } "
67
78make cpptest -j8
89for test in build/* _test; do
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -e
4+ set -u
45
5- export LD_LIBRARY_PATH=lib:$LD_LIBRARY_PATH
6+ export LD_LIBRARY_PATH=" lib:${ LD_LIBRARY_PATH:- } "
67
78tvm_root=" $( git rev-parse --show-toplevel) "
89export PYTHONPATH=" $tvm_root /python" :" $tvm_root /nnvm/python" :" $tvm_root /topi/python"
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -e
4+ set -u
45
56export PYTHONPATH=python
6- export LD_LIBRARY_PATH=lib:${LD_LIBRARY_PATH}
7+ export LD_LIBRARY_PATH=" lib:${LD_LIBRARY_PATH:- } "
78
89CURR_DIR=$( cd ` dirname $0 ` ; pwd)
910SCRIPT_DIR=$CURR_DIR /../../jvm/core/src/test/scripts
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -e
4+ set -u
45
56export PYTHONPATH=python:topi/python:apps/extension/python
6- export LD_LIBRARY_PATH=build:${LD_LIBRARY_PATH}
7+ export LD_LIBRARY_PATH=" build:${LD_LIBRARY_PATH:- } "
78
89rm -rf python/tvm/* .pyc python/tvm/* /* .pyc python/tvm/* /* /* .pyc
910
Original file line number Diff line number Diff line change 11#! /bin/bash
22
33set -e
4+ set -u
45
56export TVM_HOME=" $( git rev-parse --show-toplevel) "
67
7- export LD_LIBRARY_PATH=" $TVM_HOME /lib" : " $TVM_HOME /build" : " $TVM_HOME /nnvm" : $ LD_LIBRARY_PATH
8+ export LD_LIBRARY_PATH=" $TVM_HOME /lib: $TVM_HOME /build: $TVM_HOME /nnvm: ${ LD_LIBRARY_PATH:- } "
89export PYTHONPATH=" $TVM_HOME /python" :" $TVM_HOME /nnvm/python" :" $TVM_HOME /topi/python"
910export RUST_DIR=" $TVM_HOME /rust"
1011
You can’t perform that action at this time.
0 commit comments