48 const Kokkos::View<double[dim_1][dim_2], execution_space> view_2_static(
"rank-2 view with static extents");
49 const Kokkos::View<double** , execution_space> view_2_dynami(
"rank-2 view with dynamic extents",
dim_1,
dim_2);
50 const Kokkos::View<double*[dim_2] , execution_space> view_2_mixed (
"rank-2 view with mixed extents" ,
dim_1);
60 const Kokkos::View<double[dim_1][dim_2][dim_3], execution_space> view_3_static(
"rank-3 view of static extents");
61 const Kokkos::View<double*** , execution_space> view_3_dynami(
"rank-3 view of dynamic extents",
dim_1,
dim_2,
dim_3);
62 const Kokkos::View<double*[dim_2][dim_3] , execution_space> view_3_mixed (
"rank-3 view of mixed extents" ,
dim_1);