Skip to content
Snippets Groups Projects
Commit f0ab0460 authored by Markus Holzer's avatar Markus Holzer
Browse files

clean up

parent ca67a0ce
No related branches found
No related tags found
No related merge requests found
Pipeline #28524 passed
...@@ -108,7 +108,7 @@ minimal-sympy-master: ...@@ -108,7 +108,7 @@ minimal-sympy-master:
allow_failure: true allow_failure: true
tags: tags:
- docker - docker
- i10swarm10 - cuda
pycodegen-integration: pycodegen-integration:
......
...@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment