File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,16 @@ ARGS=$*
1818# script, and that this script resides in the repo dir!
1919REPODIR=$( cd $( dirname $0 ) ; pwd)
2020
21- VALIDARGS=" clean librmm rmm -v -g -n -s -p -h"
22- HELP=" $0 [clean] [librmm] [rmm] [-v] [-g] [-n] [-s] [-p ] [-h]
21+ VALIDARGS=" clean librmm rmm -v -g -n -s --ptds -h"
22+ HELP=" $0 [clean] [librmm] [rmm] [-v] [-g] [-n] [-s] [--ptds ] [-h]
2323 clean - remove all existing build artifacts and configuration (start over)
2424 librmm - build and install the librmm C++ code
2525 rmm - build and install the rmm Python package
2626 -v - verbose build mode
2727 -g - build for debug
2828 -n - no install step
2929 -s - statically link against cudart
30- -p - enable per-thread default stream
30+ --ptds - enable per-thread default stream
3131 -h - print this text
3232
3333 default action (no args) is to build and install 'librmm' and 'rmm' targets
9999if hasArg -s; then
100100 CUDA_STATIC_RUNTIME=ON
101101fi
102- if hasArg -p ; then
102+ if hasArg --ptds ; then
103103 PER_THREAD_DEFAULT_STREAM=ON
104104fi
105105
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ conda list
6060# ###############################################################################
6161
6262logger " Build and install librmm and rmm..."
63- " $WORKSPACE /build.sh" -v -p clean librmm rmm
63+ " $WORKSPACE /build.sh" -v --ptds clean librmm rmm
6464
6565# ###############################################################################
6666# Test - librmm
You can’t perform that action at this time.
0 commit comments