We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95fcdd7 commit 019bff0Copy full SHA for 019bff0
.github/workflows/tests.yaml
@@ -37,6 +37,9 @@ jobs:
37
- name: Run core tests with jax
38
if: runner.os == 'Linux' || runner.os == 'macOS'
39
run: poetry run pytest tests/test_classic_control_jax.py
40
+ - name: Run gae tests with jax
41
+ if: runner.os == 'Linux' || runner.os == 'macOS'
42
+ run: poetry run pytest tests/test_jax_compute_gae.py
43
- name: Install tuner dependencies
44
run: poetry install --with optuna
45
- name: Run tuner tests
tests/test_jax_compute_gae.py
@@ -41,7 +41,7 @@ def compute_gae_scan(
)
storage = storage.replace(
advantages=advantages,
- returns=storage.advantages + storage.values,
+ returns=advantages + storage.values,
46
return storage
47
0 commit comments