Skip to content
Snippets Groups Projects

FIX Quicktests

Merged Markus Holzer requested to merge holzer/pystencils:test_vectorisation into master
Viewing commit 56375832
Show latest version
1 file
+ 1
1
Preferences
Compare changes
@@ -7,7 +7,7 @@ from pystencils.cpu.vectorization import vectorize
from pystencils.fast_approximation import insert_fast_sqrts, insert_fast_divisions
from pystencils.transformations import replace_inner_stride_with_one
supported_instruction_sets = get_supported_instruction_sets() if get_supported_instruction_sets() else []
supported_instruction_sets = get_supported_instruction_sets()
if supported_instruction_sets:
instruction_set = "avx" if "avx" in supported_instruction_sets else "sse"
else: