From b053b5fa19948131315b0cde734a78f166d87b96 Mon Sep 17 00:00:00 2001
From: Michael Kuron <mkuron@icp.uni-stuttgart.de>
Date: Thu, 11 Feb 2021 16:13:11 +0100
Subject: [PATCH] Fix logic error in RNG test

---
 pystencils_tests/test_random.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pystencils_tests/test_random.py b/pystencils_tests/test_random.py
index cf1de7c27..7feb9ced5 100644
--- a/pystencils_tests/test_random.py
+++ b/pystencils_tests/test_random.py
@@ -13,9 +13,9 @@ RNGs = {('philox', 'float'): PhiloxFourFloats, ('philox', 'double'): PhiloxTwoDo
 
 instruction_sets = get_supported_instruction_sets()
 if get_compiler_config()['os'] == 'windows':
-    # skip instruction sets supported by CPU but not the compiler
+    # skip instruction sets supported by the CPU but not by the compiler
     if 'avx' in instruction_sets and ('/arch:avx2' not in get_compiler_config()['flags'].lower()
-                                      or '/arch:avx512' not in get_compiler_config()['flags'].lower()):
+                                      and '/arch:avx512' not in get_compiler_config()['flags'].lower()):
         instruction_sets.remove('avx')
     if 'avx512' in instruction_sets and '/arch:avx512' not in get_compiler_config()['flags'].lower():
         instruction_sets.remove('avx512')
-- 
GitLab