Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,10 @@ def amrex_init(tmpdir):
# "abort_on_out_of_gpu_memory=1",
# avoid managed memory unless explicitly used
"amrex.the_arena_is_managed=0",
# allocate GPU memory on-demand instead of pre-allocating 3/4th
# to enable parallel test runs on the same GPU
# https://amrex-codes.github.io/amrex/docs_html/RuntimeParameters.html?highlight=arena#memory
"amrex.the_arena_init_size=0",
]
)
yield
Expand Down
Loading