You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I receive a warning when loading the package ScanByte (v. 0.3.2) in Julia 1.8.0-rc1 (2022-05-27) (experimental 64-bit installer for macOS ARM (M-series Processor)) on a MacBook Pro with Apple M1 Max processor and Mac OS 12.4:
julia> using ScanByte
┌ Warning: SIMD capacity not detected by ScanByte, using scalar fallback
└ @ ScanByte ~/.julia/packages/ScanByte/cr4PT/src/ScanByte.jl:11
Any idea how to address the problem?
The text was updated successfully, but these errors were encountered:
Duplicate of #2 . The warning happens because ScanByte is optimised for x86 chips with SSSE3 or AVX2 instruction sets. The new M1/M2 Mac chips use Armv8 and do not have these instructions.
I have just removed the warning from the version on master. Hopefully some time in the future I can add Armv8 functionality.
I receive a warning when loading the package ScanByte (v. 0.3.2) in Julia 1.8.0-rc1 (2022-05-27) (experimental 64-bit installer for macOS ARM (M-series Processor)) on a MacBook Pro with Apple M1 Max processor and Mac OS 12.4:
julia> using ScanByte
┌ Warning: SIMD capacity not detected by ScanByte, using scalar fallback
└ @ ScanByte ~/.julia/packages/ScanByte/cr4PT/src/ScanByte.jl:11
Any idea how to address the problem?
The text was updated successfully, but these errors were encountered: