We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb50f4b commit 0f4e73fCopy full SHA for 0f4e73f
scheduler/Scheduler.py
@@ -53,7 +53,7 @@ def __init__(
53
dynamic: bool = True,
54
cpu_threshold: float = 95,
55
cpu_update_interval: float = 5,
56
- shared_memory: bool = True,
+ shared_memory: bool = False,
57
shared_memory_threshold:int = 1e7,
58
):
59
"""
test/test_scheduler.py
@@ -58,7 +58,7 @@
def test_shared_memory_numpy():
60
"""Tests whether `run_blocking()` works correctly."""
61
- scheduler = Scheduler()
+ scheduler = Scheduler(shared_memory=True, shared_memory_threshold=0)
62
63
args, expected = _get_input_output_numpy()
64
for a in args:
0 commit comments