Skip to content

Commit c4c2906

Browse files
committed
rename flag to --ptds
1 parent 713a4d6 commit c4c2906

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ ARGS=$*
1818
# script, and that this script resides in the repo dir!
1919
REPODIR=$(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
@@ -99,7 +99,7 @@ fi
9999
if hasArg -s; then
100100
CUDA_STATIC_RUNTIME=ON
101101
fi
102-
if hasArg -p; then
102+
if hasArg --ptds; then
103103
PER_THREAD_DEFAULT_STREAM=ON
104104
fi
105105

ci/gpu/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ conda list
6060
################################################################################
6161

6262
logger "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

0 commit comments

Comments
 (0)