stdarch icon indicating copy to clipboard operation
stdarch copied to clipboard

Add an implementation of not to __m256i and possibly other types.

Open raphaelcohn opened this issue 3 years ago • 3 comments

For feature parity with C implementations, we could consider a (const) implementation of not (!) for __m256i, and probably other types.

Justification, eg code examples in answer to https://stackoverflow.com/questions/42613821/is-not-missing-from-sse-avx?rq=1 use C's ~ operator.

raphaelcohn avatar Mar 12 '21 13:03 raphaelcohn

Operators on vector types are a non-standard extension which we don't support.

Amanieu avatar Mar 13 '21 15:03 Amanieu

We should support it long term, but that would be an RFC debate of its own.

Lokathor avatar Mar 13 '21 15:03 Lokathor

@Amanieu @Lokathor thank you. I won't be raising a RFC for this.

raphaelcohn avatar Mar 15 '21 09:03 raphaelcohn