Example #1
0
 static batch_type bitwise_xor(const batch_type& lhs, const batch_type& rhs)
 {
     return _mm512_xor_ps(lhs, rhs);
 }
Example #2
0
 static batch_type bitwise_not(const batch_type& rhs)
 {
     return _mm512_xor_ps(rhs, _mm512_castsi512_ps(_mm512_set1_epi32(-1)));
 }
Example #3
0
__m512 test_mm512_xor_ps (__m512 __A, __m512 __B) {
  // CHECK-LABEL: @test_mm512_xor_ps
  // CHECK: xor <16 x i32>
  return (__m512) _mm512_xor_ps(__A, __B);
}