We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe4cd8e commit b85978cCopy full SHA for b85978c
setup.py
@@ -30,14 +30,14 @@
30
31
# SSE2
32
if 'sse2' in cpu_info['flags']:
33
- print('SSE2 support detected')
+ print('SSE2 detected')
34
extra_compile_args.append('-DSHUFFLE_SSE2_ENABLED')
35
extra_compile_args.append('-msse2')
36
blosc_sources += [f for f in glob('c-blosc/blosc/*.c') if 'sse2' in f]
37
38
# AVX2
39
if 'avx2' in cpu_info['flags']:
40
- print('AVX2 support detected')
+ print('AVX2 detected')
41
extra_compile_args.append('-DSHUFFLE_AVX2_ENABLED')
42
extra_compile_args.append('-mavx2')
43
blosc_sources += [f for f in glob('c-blosc/blosc/*.c') if 'avx2' in f]
0 commit comments