From 09a2c5ba7a3fb33223ce926f7d2c3532c2240188 Mon Sep 17 00:00:00 2001
From: markus holzer <markus.holzer@fau.de>
Date: Tue, 8 Dec 2020 16:47:41 +0100
Subject: [PATCH] Use most advanced vector set in test cases

---
 pystencils_tests/test_vectorization.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pystencils_tests/test_vectorization.py b/pystencils_tests/test_vectorization.py
index f84cb5346..f40a1875a 100644
--- a/pystencils_tests/test_vectorization.py
+++ b/pystencils_tests/test_vectorization.py
@@ -9,7 +9,7 @@ from pystencils.transformations import replace_inner_stride_with_one
 
 supported_instruction_sets = get_supported_instruction_sets()
 if supported_instruction_sets:
-    instruction_set = "avx" if "avx" in supported_instruction_sets else "sse"
+    instruction_set = supported_instruction_sets[-1]
 else:
     instruction_set = None
 
-- 
GitLab