mirror of
https://github.com/brycedrennan/imaginAIry
synced 2024-11-19 03:25:41 +00:00
Merge pull request #418 from brycedrennan/fix_test_set_spu_full
fix: configures test_set_gpu_full to run on a m1 mac.
This commit is contained in:
commit
2eee741b20
@ -65,9 +65,13 @@ def test_set_cpu_full():
|
||||
|
||||
@pytest.mark.skipif(get_device() == "cpu", reason="GPU not available")
|
||||
def test_set_gpu_full():
|
||||
device = get_device()
|
||||
cache = GPUModelCache(
|
||||
max_cpu_memory_gb=1, max_gpu_memory_gb=0.0000001, device=get_device()
|
||||
max_cpu_memory_gb=1, max_gpu_memory_gb=0.0000001, device=device
|
||||
)
|
||||
if device in ("cpu", "mps"):
|
||||
assert cache.max_cpu_memory == 0
|
||||
else:
|
||||
assert cache.max_cpu_memory == 1073741824
|
||||
model = create_model_of_n_bytes(100_000)
|
||||
with pytest.raises(RuntimeError):
|
||||
|
Loading…
Reference in New Issue
Block a user