Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion config/install_smdebug.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd $CODEBUILD_SRC_DIR
if [ "$SMDEBUG_S3_BINARY" ]; then
mkdir -p s3_pip_binary
aws s3 cp "$SMDEBUG_S3_BINARY" s3_pip_binary
pip install --force-reinstall --upgrade s3_pip_binary/*.whl
pip install --upgrade s3_pip_binary/*.whl
else
python setup.py bdist_wheel --universal && pip install --upgrade --force-reinstall dist/*.whl
fi
Expand All @@ -19,7 +19,12 @@ if [ "$run_pytest_mxnet" == 'enable' ]; then
fi
if [ "$run_pytest_tensorflow" == 'enable' ]; then
./config/check_smdebug_install.sh tensorflow
pip install tensorflow_datasets
fi
if [ "$run_pytest_pytorch" == 'enable' ]; then
./config/check_smdebug_install.sh torch
fi
if [ "$run_pytest_xgboost" == 'enable' ]; then
./config/check_smdebug_install.sh xgboost
pip install --ignore-installed PyYAML
fi