From 615f9743138b5e9ea147905b916b24f23bf983c7 Mon Sep 17 00:00:00 2001 From: "Siyuan (Ryans) Zhuang" Date: Tue, 1 Dec 2020 19:27:14 -0800 Subject: [PATCH] Add context for "test_buffer_alignment" (#12519) --- python/ray/tests/test_serialization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/ray/tests/test_serialization.py b/python/ray/tests/test_serialization.py index 35b6e09fe..240fe4bc6 100644 --- a/python/ray/tests/test_serialization.py +++ b/python/ray/tests/test_serialization.py @@ -543,7 +543,7 @@ def test_reducer_override_no_reference_cycle(ray_start_shared_local_modes): assert new_obj() is None -def test_buffer_alignment(): +def test_buffer_alignment(ray_start_shared_local_modes): # Deserialized large numpy arrays should be 64-byte aligned. x = np.random.normal(size=(10, 20, 30)) y = ray.get(ray.put(x))