-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Closed
Labels
Milestone
Description
#96451 added generic versions of the existing float-based operations, complete with vectorization. However, that vectorization is currently skipped if sizeof(T) < 4, which means it doesn't kick in for byte, sbyte, ushort, short, or char. That should be implemented (or we should explicitly decide we don't need to).
Line 15 in 7e51126
| // - Vectorize integer operations when sizeof(T) == 1 or 2 (currently only vectorized in most operations for sizeof(T) == 4 or 8). |