Exemplo n.º 1
0
 static batch_type bitwise_and(const batch_type& lhs, const batch_type& rhs)
 {
     return _mm512_and_ps(lhs, rhs);
 }
Exemplo n.º 2
0
__m512 test_mm512_and_ps (__m512 __A, __m512 __B) {
  // CHECK-LABEL: @test_mm512_and_ps
  // CHECK: and <16 x i32>
  return (__m512) _mm512_and_ps(__A, __B);
}