Skip to content

Commit b769e6c

Browse files
committed
fix startup script for python version upgrade
1 parent 426e6ee commit b769e6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/scripts/startup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ fi
156156

157157
if [[ ${TEST} == "true" ]]; then
158158
cd algorithmic-efficiency
159-
COMMAND="python3 tests/test_traindiffs.py"
159+
COMMAND="python tests/test_traindiffs.py"
160160
echo $COMMAND
161161
eval $COMMAND
162162
exit
@@ -209,7 +209,7 @@ TUNING_RULESET_FLAG="--tuning_ruleset=${TUNING_RULESET}"
209209

210210
# Set run command prefix depending on framework
211211
if [[ "${FRAMEWORK}" == "jax" ]]; then
212-
COMMAND_PREFIX="python3"
212+
COMMAND_PREFIX="python"
213213
else
214214
COMMAND_PREFIX="torchrun --redirects 1:0,2:0,3:0,4:0,5:0,6:0,7:0 --standalone --nnodes=1 --nproc_per_node=8"
215215
fi

0 commit comments

Comments
 (0)