Skip to content

Commit 5b3e699

Browse files
committed
Bump maximum memory usage for SHOC standard
Seems Windows uses slightly more memory and we were right on the limit. I am unsure what aspects introduce variance and if there is anything we can do about that.
1 parent e4d3e9a commit 5b3e699

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/conventions/test_shoc_standard.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,6 @@ def test_make_polygons_memory_usage():
673673

674674
logger.info("current memory usage: %d, peak memory usage: %d", tracker.current, tracker.peak)
675675

676-
target = 133_000_000
676+
target = 134_500_000
677677
assert tracker.peak < target, "Peak memory allocation is too large"
678678
assert tracker.peak > target * 0.9, "Peak memory allocation is suspiciously small - did you improve things?"

0 commit comments

Comments
 (0)