From 2eafcc6c6cbbf78c9619ebe440d43f538e473b5b Mon Sep 17 00:00:00 2001
From: Markus Holzer <markus.holzer@fau.de>
Date: Thu, 10 Feb 2022 14:33:37 +0100
Subject: [PATCH] Everything is good now

---
 pystencils_tests/test_vectorization_specific.py | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/pystencils_tests/test_vectorization_specific.py b/pystencils_tests/test_vectorization_specific.py
index c6deb2de..81c5f794 100644
--- a/pystencils_tests/test_vectorization_specific.py
+++ b/pystencils_tests/test_vectorization_specific.py
@@ -85,20 +85,12 @@ def test_strided(instruction_set, dtype):
     ref_func = ps.create_kernel(update_rule, config=ref_config).compile()
 
     arr = np.full((23 + 2, 17 + 2), 0.13).astype(npdtype)
-    print("sum arr: ", np.sum(arr))
-    # print("arr type:  ", arr.dtype)
     dst = np.zeros_like(arr, dtype=npdtype)
     ref = np.zeros_like(arr, dtype=npdtype)
 
     func(g=dst, f=arr)
     ref_func(g=ref, f=arr)
 
-    # print(dst)
-    # print(ref)
-    
-    print("dst sum:  ", np.sum(dst))
-    print("reference sum:  ", np.sum(ref))
-
     np.testing.assert_almost_equal(dst, ref, 13 if dtype == 'double' else 5)
 
 
-- 
GitLab