-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconst_t.cxx
67 lines (60 loc) · 1.54 KB
/
const_t.cxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <iostream>
#include <string>
#include <Kokkos_Core.hpp>
using namespace std;
// Works
// template<typename T>
// void func(Kokkos::View<T**> const& arg)
// {
// for (size_t i = 0; i < arg.size(); ++i) {
// std::cout << arg.data()[i] << " ";
// }
// std::cout << std::endl;
// }
// Works
// template<typename T, typename... Props>
// void func(Kokkos::View<T**, Props...> const& arg)
// {
// for (size_t i = 0; i < arg.size(); ++i) {
// std::cout << arg.data()[i] << " ";
// }
// std::cout << std::endl;
// }
// Doesn't work, cannot convert int to const T
// template<typename T, typename... Props>
// void func(Kokkos::View<const T**, Props...> const& arg)
// {
// for (size_t i = 0; i < arg.size(); ++i) {
// std::cout << arg.data()[i] << " ";
// }
// std::cout << std::endl;
// }
// Works
void func(Kokkos::View<const int**> const& arg)
{
for (size_t i = 0; i < arg.size(); ++i) {
std::cout << arg.data()[i] << " ";
}
std::cout << std::endl;
}
// Doesn't work, cannot deduce
// template<typename T, typename Layout, typename Device, typename Traits>
// void func(Kokkos::View<T**, Layout, Device, Traits> const& arg)
// {
// for (size_t i = 0; i < arg.size(); ++i) {
// std::cout << arg.data()[i] << " ";
// }
// std::cout << std::endl;
// }
int main(int argc, char** argv)
{
Kokkos::initialize(argc, argv); {
Kokkos::View<int**> data("data", 2, 4);
Kokkos::View<const int**> data2 = data;
Kokkos::deep_copy(data, 1);
func(data);
func(data2);
}
Kokkos::finalize();
return 0;
}