Skip to content

Commit

Permalink
add 8GB memory limit for streaming
Browse files Browse the repository at this point in the history
  • Loading branch information
harsha-simhadri committed Oct 15, 2023
1 parent fe8af53 commit 6a615b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def run_docker(definition, dataset, count, runs, timeout, rebuild,

client = docker.from_env()
if mem_limit is None:
mem_limit = psutil.virtual_memory().available
mem_limit = psutil.virtual_memory().available if neurips23track != 'streaming' else (8*1024*1024*1024)

# ready the container object invoked later in this function
container = None
Expand Down

0 comments on commit 6a615b8

Please sign in to comment.