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
morse_to_binary currently uses SWAR to convert each Morse symbol of a character into a bit. The 64-bit multiplication is problematic for SSE and AVX ISAs. However, the carry-less instruction from AVX-512 might allow us to perform SWAR within each lane of a SIMD register.
With that being said, the main issue is with gathering the Morse symbols of each character in a separate lane. Something might be done with the expand instruction from AVX-512.
The text was updated successfully, but these errors were encountered:
morse_to_binary
currently uses SWAR to convert each Morse symbol of a character into a bit. The 64-bit multiplication is problematic for SSE and AVX ISAs. However, the carry-less instruction from AVX-512 might allow us to perform SWAR within each lane of a SIMD register.With that being said, the main issue is with gathering the Morse symbols of each character in a separate lane. Something might be done with the expand instruction from AVX-512.
The text was updated successfully, but these errors were encountered: