Skip to content
Snippets Groups Projects
Commit 2d925329 authored by Martin Bauer's avatar Martin Bauer
Browse files

Added missing SIMD SSE header for comparison constants

parent 1b7ae9aa
No related merge requests found
...@@ -33,7 +33,8 @@ def get_vector_instruction_set(data_type='double', instruction_set='avx'): ...@@ -33,7 +33,8 @@ def get_vector_instruction_set(data_type='double', instruction_set='avx'):
headers = { headers = {
'avx512': ['<immintrin.h>'], 'avx512': ['<immintrin.h>'],
'avx': ['<immintrin.h>'], 'avx': ['<immintrin.h>'],
'sse': ['<xmmintrin.h>', '<emmintrin.h>', '<pmmintrin.h>', '<tmmintrin.h>', '<smmintrin.h>', '<nmmintrin.h>'] 'sse': ['<immintrin.h>', '<xmmintrin.h>', '<emmintrin.h>', '<pmmintrin.h>',
'<tmmintrin.h>', '<smmintrin.h>', '<nmmintrin.h>']
} }
suffix = { suffix = {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment