File tree 1 file changed +5
-1
lines changed
1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -65,9 +65,13 @@ def test_memory_use_in_combine(combine_method):
65
65
# Checks for NOT ENOUGH MEMORY USED; if these fail it means that
66
66
# memory_factor in the combine function should perhaps be modified
67
67
68
+ # DROPPED THESE TESTS -- it isn't clear they were actually useful and
69
+ # in any event the important thing to guarantee is that we don't
70
+ # exceed the memory limit.
71
+
68
72
# If the peak is coming in under the limit something need to be fixed
69
73
# assert np.max(mem_use) >= 0.95 * memory_limit_mb
70
74
71
75
# If the average is really low perhaps we should look at reducing peak
72
76
# usage. Nothing special, really, about the factor 0.4 below.
73
- assert np .mean (mem_use [mem_use > 0 ]) > 0.4 * memory_limit_mb
77
+ # assert np.mean(mem_use[mem_use > 0]) > 0.4 * memory_limit_mb
You can’t perform that action at this time.
0 commit comments