Skip to content

Commit

Permalink
Try with smaller bm size
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Jan 5, 2023
1 parent 4992b9e commit 24b6ff7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion benchmark/benchmark_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
except FileNotFoundError:
max_memory = psutil.virtual_memory().total

bm_size = int((max_memory / 1024 ** 2) * .95)
bm_size = int((max_memory / 1024 ** 2) * .9)
base_dir = os.path.dirname(os.path.realpath(__file__))

# dataset registration
Expand Down Expand Up @@ -200,6 +200,7 @@ def run_kuzu(serialized_graph_path):
'--run=' + str(num_run),
'--out=' + benchmark_log_dir + '/' + group,
'--bm-size=' + str(bm_size),
'--thread=' + str(cpu_count),
'--profile'
]
process = subprocess.Popen(
Expand Down

0 comments on commit 24b6ff7

Please sign in to comment.