Warning, /acts/Detray/tests/unit_tests/device/sycl/algebra.sycl is written in an unsupported language. File is not indexed.
0001 // This file is part of the ACTS project.
0002 //
0003 // Copyright (C) 2016 CERN for the benefit of the ACTS project
0004 //
0005 // This Source Code Form is subject to the terms of the Mozilla Public
0006 // License, v. 2.0. If a copy of the MPL was not distributed with this
0007 // file, You can obtain one at https://mozilla.org/MPL/2.0/.
0008
0009 // Test include(s).
0010 #include "detray/test/device/sycl/algebra_test_suite.hpp"
0011
0012 // GoogleTest include(s).
0013 #include <gtest/gtest.h>
0014
0015 // System include(s).
0016 #include <string>
0017
0018 namespace detray::test::sycl {
0019
0020 using test_types = testing::Types<detray::test::algebra>;
0021
0022 REGISTER_TYPED_TEST_SUITE_P(sycl_vector_test, vector_2d_ops, vector_3d_ops);
0023 REGISTER_TYPED_TEST_SUITE_P(sycl_matrix_test, matrix64_ops, matrix22_ops);
0024 REGISTER_TYPED_TEST_SUITE_P(sycl_transform_test, transform3D);
0025
0026 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, sycl_vector_test, test_types,
0027 test_specialisation_name);
0028 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, sycl_matrix_test, test_types,
0029 test_specialisation_name);
0030 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, sycl_transform_test, test_types,
0031 test_specialisation_name);
0032
0033 } // namespace detray::test::sycl