-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: amd/linux script improvements;
exit_on_unhandled_faults
improv…
…ement fix: respect `amd` CLI arg for `run_worker.py` fix: tar command fix: use correct pytorch channel for rocm fix: els0 fix: more aggressive exiting with `exit_on_unhandled_faults: true` feat: `preload-models.sh` - This complements the existing .cmd script for windows fix: set +x on `preload-models.sh`; skip jemalloc check fix: set +x on preload-models.sh fix: make sure micromamba has full path Co-Authored-By: Divided by Zer0 <[email protected]>
- Loading branch information
Showing
5 changed files
with
53 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
# Get the directory of the current script | ||
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)" | ||
|
||
if "$SCRIPT_DIR/runtime.sh" python -s "$SCRIPT_DIR/download_models.py"; then | ||
echo "Model Download OK." | ||
else | ||
echo "download_models.py exited with error code." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters