We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d95f2 commit ab83665Copy full SHA for ab83665
spark-rapids/spark-rapids.sh
@@ -261,7 +261,7 @@ IS_MIG_ENABLED=0
261
function execute_with_retries() {
262
local -r cmd=$1
263
for ((i = 0; i < 10; i++)); do
264
- if eval "$cmd"; then
+ if time eval "$cmd"; then
265
return 0
266
fi
267
sleep 5
@@ -452,7 +452,7 @@ function install_nvidia_gpu_driver() {
452
curl -fsSL --retry-connrefused --retry 10 --retry-max-time 30 \
453
"https://developer.download.nvidia.com/compute/cuda/${CUDA_VERSION}/local_installers/${cuda_runfile}" \
454
-o cuda.run
455
- bash cuda.run --silent --toolkit --no-opengl-libs
+ time bash cuda.run --silent --toolkit --no-opengl-libs
456
rm cuda.run
457
else
458
# Install from repo provided by NV
0 commit comments