// Copyright 2023 Google LLC // SPDX-License-Identifier: Apache-2.0 // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include #undef HWY_TARGET_INCLUDE #define HWY_TARGET_INCLUDE "tests/tuple_test.cc" #include "hwy/foreach_target.h" // IWYU pragma: keep #include "hwy/highway.h" #include "hwy/tests/test_util-inl.h" HWY_BEFORE_NAMESPACE(); namespace hwy { namespace HWY_NAMESPACE { struct TestCreate { template HWY_NOINLINE void operator()(T /*unused*/, D d) { #if HWY_HAVE_TUPLE const Vec v0 = Zero(d); const Vec vi = Iota(d, T{1}); const Vec v2 = Set(d, T{2}); const Vec v3 = Set(d, T{3}); const Vec2 t2 = Create2(d, v0, vi); HWY_ASSERT_VEC_EQ(d, v0, Get2<0>(t2)); HWY_ASSERT_VEC_EQ(d, vi, Get2<1>(t2)); const Vec3 t3 = Create3(d, v0, vi, v2); HWY_ASSERT_VEC_EQ(d, v0, Get3<0>(t3)); HWY_ASSERT_VEC_EQ(d, vi, Get3<1>(t3)); HWY_ASSERT_VEC_EQ(d, v2, Get3<2>(t3)); const Vec4 t4 = Create4(d, v0, vi, v2, v3); HWY_ASSERT_VEC_EQ(d, v0, Get4<0>(t4)); HWY_ASSERT_VEC_EQ(d, vi, Get4<1>(t4)); HWY_ASSERT_VEC_EQ(d, v2, Get4<2>(t4)); HWY_ASSERT_VEC_EQ(d, v3, Get4<3>(t4)); #else (void)d; fprintf(stderr, "Warning: tuples are disabled for target %s\n", hwy::TargetName(HWY_TARGET)); #endif // HWY_HAVE_TUPLE } }; HWY_NOINLINE void TestAllCreate() { ForAllTypes(ForPartialVectors()); } // NOLINTNEXTLINE(google-readability-namespace-comments) } // namespace HWY_NAMESPACE } // namespace hwy HWY_AFTER_NAMESPACE(); #if HWY_ONCE namespace hwy { HWY_BEFORE_TEST(TupleTest); HWY_EXPORT_AND_TEST_P(TupleTest, TestAllCreate); } // namespace hwy #endif // HWY_ONCE