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

Use most advanced vector set in test cases

parent 8227d279
No related branches found
No related tags found
No related merge requests found
Pipeline #28533 passed
...@@ -9,7 +9,7 @@ from pystencils.transformations import replace_inner_stride_with_one ...@@ -9,7 +9,7 @@ from pystencils.transformations import replace_inner_stride_with_one
supported_instruction_sets = get_supported_instruction_sets() supported_instruction_sets = get_supported_instruction_sets()
if 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: else:
instruction_set = None instruction_set = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment