-
Notifications
You must be signed in to change notification settings - Fork 26
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 #265 from mila-iqia/staging
Staging
- Loading branch information
Showing
42 changed files
with
2,773 additions
and
92 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,31 @@ | ||
# Use global base if possible | ||
ifndef MILABENCH_BASE | ||
MILABENCH_BASE="base" | ||
endif | ||
|
||
export MILABENCH_BASE | ||
|
||
BENCH_NAME=cleanrl_jax | ||
MILABENCH_CONFIG=dev.yaml | ||
MILABENCH_ARGS=--config $(MILABENCH_CONFIG) --base $(MILABENCH_BASE) | ||
|
||
all: | ||
install prepare single gpus nodes | ||
|
||
install: | ||
milabench install $(MILABENCH_ARGS) --force | ||
|
||
prepare: | ||
milabench prepare $(MILABENCH_ARGS) | ||
|
||
tests: install prepare | ||
milabench run $(MILABENCH_ARGS) | ||
|
||
single: | ||
milabench run $(MILABENCH_ARGS) --select $(BENCH_NAME) | ||
|
||
gpus: | ||
milabench run $(MILABENCH_ARGS) --select $(BENCH_NAME)-gpus | ||
|
||
nodes: | ||
milabench run $(MILABENCH_ARGS) --select $(BENCH_NAME)-nodes |
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,4 @@ | ||
|
||
# Cleanrl_jax | ||
|
||
Rewrite this README to explain what the benchmark is! |
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,31 @@ | ||
from milabench.pack import Package | ||
|
||
|
||
class Cleanrl_jax(Package): | ||
# Requirements file installed by install(). It can be empty or absent. | ||
base_requirements = "requirements.in" | ||
|
||
# The preparation script called by prepare(). It must be executable, | ||
# but it can be any type of script. It can be empty or absent. | ||
prepare_script = "prepare.py" | ||
|
||
# The main script called by run(). It must be a Python file. It has to | ||
# be present. | ||
main_script = "main.py" | ||
|
||
# You can remove the functions below if you don't need to modify them. | ||
|
||
def make_env(self): | ||
# Return a dict of environment variables for prepare_script and | ||
# main_script. | ||
return super().make_env() | ||
|
||
async def install(self): | ||
await super().install() # super() call installs the requirements | ||
|
||
async def prepare(self): | ||
await super().prepare() # super() call executes prepare_script | ||
|
||
|
||
|
||
__pack__ = Cleanrl_jax |
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,8 @@ | ||
|
||
cleanrl_jax: | ||
inherits: _defaults | ||
definition: . | ||
install-variant: unpinned | ||
install_group: torch | ||
plan: | ||
method: per_gpu |
Oops, something went wrong.