Skip to content

Commit

Permalink
Initial commit Torch_PPO_Cleanrl_Atari_Envpool
Browse files Browse the repository at this point in the history
  • Loading branch information
roger-creus committed Aug 1, 2024
1 parent 3a30894 commit a6bb275
Show file tree
Hide file tree
Showing 11 changed files with 562 additions and 3 deletions.
31 changes: 31 additions & 0 deletions benchmarks/torch_ppo_atari_envpool/Makefile
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=torch_ppo_atari_envpool
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)-single

gpus:
milabench run $(MILABENCH_ARGS) --select $(BENCH_NAME)-gpus

nodes:
milabench run $(MILABENCH_ARGS) --select $(BENCH_NAME)-nodes
4 changes: 4 additions & 0 deletions benchmarks/torch_ppo_atari_envpool/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@

# Torch_ppo_atari_envpool

Rewrite this README to explain what the benchmark is!
31 changes: 31 additions & 0 deletions benchmarks/torch_ppo_atari_envpool/benchfile.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
from milabench.pack import Package


class Torch_ppo_atari_envpool(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__ = Torch_ppo_atari_envpool
7 changes: 7 additions & 0 deletions benchmarks/torch_ppo_atari_envpool/dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

torch_ppo_atari_envpool:
inherits: _defaults
definition: .
install-variant: unpinned
plan:
method: per_gpu
Loading

0 comments on commit a6bb275

Please sign in to comment.