Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-27 07:24:24

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/cuda/algebra_test_suite.cuh"
0011 
0012 // GoogleTest include(s).
0013 #include <gtest/gtest.h>
0014 
0015 // System include(s).
0016 #include <string>
0017 
0018 namespace detray::test::cuda {
0019 
0020 using test_types = testing::Types<detray::test::algebra>;
0021 
0022 REGISTER_TYPED_TEST_SUITE_P(cuda_vector_test, vector_2d_ops, vector_3d_ops);
0023 REGISTER_TYPED_TEST_SUITE_P(cuda_matrix_test, matrix64_ops, matrix22_ops);
0024 REGISTER_TYPED_TEST_SUITE_P(cuda_transform_test, transform3D);
0025 
0026 // The 'test_types' are defined in 'algebra/test/framework/types.hpp'
0027 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, cuda_vector_test, test_types,
0028                                test_specialisation_name);
0029 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, cuda_matrix_test, test_types,
0030                                test_specialisation_name);
0031 INSTANTIATE_TYPED_TEST_SUITE_P(detray_algebra, cuda_transform_test, test_types,
0032                                test_specialisation_name);
0033 
0034 }  // namespace detray::test::cuda