#include #include typedef Kokkos::View view_type; int main (int argc, char* argv[]) { Kokkos::initialize (argc, argv); { view_type a("A",6,0); Kokkos::resize(a,6,3000); printf("Extent 0 = %ld, Extent 1 = %ld\n",a.extent(0),a.extent(1)); } Kokkos::finalize(); }