Skip to content
Snippets Groups Projects

FIX Quicktests

Merged Markus Holzer requested to merge holzer/pystencils:test_vectorisation into master
All threads resolved!
2 files
+ 5
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -8,7 +8,10 @@ from pystencils.fast_approximation import insert_fast_sqrts, insert_fast_divisio
@@ -8,7 +8,10 @@ from pystencils.fast_approximation import insert_fast_sqrts, insert_fast_divisio
from pystencils.transformations import replace_inner_stride_with_one
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 get_supported_instruction_sets() else []
instruction_set = "avx" if "avx" in supported_instruction_sets else "sse"
if supported_instruction_sets:
 
instruction_set = "avx" if "avx" in supported_instruction_sets else "sse"
 
else:
 
instruction_set = None
def test_vector_type_propagation():
def test_vector_type_propagation():
a, b, c, d, e = sp.symbols("a b c d e")
a, b, c, d, e = sp.symbols("a b c d e")
Loading