Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Jonas Plewinski
pystencils
Commits
2d925329
Commit
2d925329
authored
Mar 05, 2019
by
Martin Bauer
Browse files
Added missing SIMD SSE header for comparison constants
parent
1b7ae9aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
backends/simd_instruction_sets.py
View file @
2d925329
...
...
@@ -33,7 +33,8 @@ def get_vector_instruction_set(data_type='double', instruction_set='avx'):
headers
=
{
'avx512'
:
[
'<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
=
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment