1212
1313C2H_TEST (" 1d Copy" , " [data_manipulation]" )
1414{
15- cudax ::stream _stream{cuda::device_ref{0 }};
15+ cuda ::stream _stream{cuda::device_ref{0 }};
1616
1717 SECTION (" Device resource" )
1818 {
19- cudax ::device_memory_pool_ref device_resource = cudax ::device_default_memory_pool (cuda::device_ref{0 });
19+ cuda ::device_memory_pool_ref device_resource = cuda ::device_default_memory_pool (cuda::device_ref{0 });
2020 std::vector<int > host_vector (buffer_size);
2121
2222 {
@@ -46,8 +46,8 @@ C2H_TEST("1d Copy", "[data_manipulation]")
4646
4747 SECTION (" Host and managed resource" )
4848 {
49- cudax ::legacy_managed_memory_resource managed_resource;
50- cudax ::legacy_pinned_memory_resource host_resource;
49+ cuda ::legacy_managed_memory_resource managed_resource;
50+ cuda ::legacy_pinned_memory_resource host_resource;
5151
5252 {
5353 cudax::uninitialized_buffer<int , cuda::mr::host_accessible> host_buffer (host_resource, buffer_size);
@@ -78,7 +78,7 @@ C2H_TEST("1d Copy", "[data_manipulation]")
7878 }
7979 SECTION (" Launch transform" )
8080 {
81- cudax ::legacy_pinned_memory_resource host_resource;
81+ cuda ::legacy_pinned_memory_resource host_resource;
8282 cudax::weird_buffer input (host_resource, buffer_size);
8383 cudax::weird_buffer output (host_resource, buffer_size);
8484
@@ -90,7 +90,7 @@ C2H_TEST("1d Copy", "[data_manipulation]")
9090
9191 SECTION (" Asymmetric size" )
9292 {
93- cudax ::legacy_pinned_memory_resource host_resource;
93+ cuda ::legacy_pinned_memory_resource host_resource;
9494 cudax::uninitialized_buffer<int , cuda::mr::host_accessible> host_buffer (host_resource, 1 );
9595 cudax::fill_bytes (_stream, host_buffer, fill_byte);
9696
@@ -133,7 +133,7 @@ void test_mdspan_copy_bytes(
133133
134134C2H_TEST (" Mdspan copy" , " [data_manipulation]" )
135135{
136- cudax ::stream stream{cuda::device_ref{0 }};
136+ cuda ::stream stream{cuda::device_ref{0 }};
137137
138138 SECTION (" Different extents" )
139139 {
@@ -154,7 +154,7 @@ C2H_TEST("Mdspan copy", "[data_manipulation]")
154154
155155 SECTION (" Launch transform" )
156156 {
157- auto host_resource = cudax ::legacy_pinned_memory_resource{};
157+ auto host_resource = cuda ::legacy_pinned_memory_resource{};
158158 auto mixed_extents =
159159 cuda::std::extents<size_t , 1024 , cuda::std::dynamic_extent, 2 , cuda::std::dynamic_extent>(1024 , 2 );
160160 [[maybe_unused]] auto static_extents = cuda::std::extents<size_t , 1024 , 1024 , 2 , 2 >();
@@ -171,7 +171,7 @@ C2H_TEST("Mdspan copy", "[data_manipulation]")
171171
172172C2H_TEST (" Non exhaustive mdspan copy_bytes" , " [data_manipulation]" )
173173{
174- cudax ::stream stream{cuda::device_ref{0 }};
174+ cuda ::stream stream{cuda::device_ref{0 }};
175175 {
176176 auto fake_strided_mdspan = create_fake_strided_mdspan ();
177177
0 commit comments