File indexing completed on 2026-05-27 07:24:24
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #include "detray/test/device/cuda/algebra_test_suite.cuh"
0011
0012
0013 #include <gtest/gtest.h>
0014
0015
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
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 }