We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd6295a commit 0658f77Copy full SHA for 0658f77
test/test_batch_bool.cpp
@@ -381,6 +381,10 @@ struct batch_bool_test
381
INFO("operator&");
382
CHECK_BATCH_EQ(bool_g.half & bool_g.ihalf, bool_g.all_false);
383
}
384
+ {
385
+ INFO("operator^");
386
+ CHECK_BATCH_EQ(bool_g.half ^ bool_g.all_true, bool_g.ihalf);
387
+ }
388
// free function version
389
{
390
INFO("bitwise_not");
@@ -394,6 +398,10 @@ struct batch_bool_test
394
398
INFO("bitwise_and");
395
399
CHECK_BATCH_EQ(xsimd::bitwise_and(bool_g.half, bool_g.ihalf), bool_g.all_false);
396
400
401
402
+ INFO("bitwise_xor");
403
+ CHECK_BATCH_EQ(xsimd::bitwise_xor(bool_g.half, bool_g.all_true), bool_g.ihalf);
404
397
405
406
407
void test_update_operations() const
0 commit comments