-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from cedana/fix/retryable-setups
CED-63: basic retry command added
- Loading branch information
Showing
6 changed files
with
108 additions
and
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"restructuredtext.preview.docutils.disabled": true | ||
} |
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
llama.cpp | ||
llama_models | ||
workdir |
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 |
---|---|---|
@@ -1,13 +1,15 @@ | ||
instance_specs: | ||
memory_gb: 30 | ||
cpu_cores: 4 | ||
max_price_usd_hour: 1 | ||
work_dir: '/home/USER/work_dir' | ||
memory_gb: 30 | ||
cpu_cores: 4 | ||
max_price_usd_hour: 1 | ||
work_dir: 'work_dir' | ||
|
||
setup: | ||
run: | ||
- 'sudo apt-get update && sudo apt-get install -y python3 python3-venv' | ||
- 'docker build -t trill .' | ||
run: | ||
- 'sudo apt-get update && sudo apt-get install -y python3 python3-venv' | ||
- 'cd work_dir/TRILL && sudo docker build -t trill .' | ||
|
||
|
||
task: | ||
run: | ||
- 'echo "hello world" ; docker run trill example_1 0 -h' | ||
run: | ||
- 'echo "hello world" ; sudo docker run trill example_1 0 -h' |
This file was deleted.
Oops, something went wrong.