Intrepid2
Intrepid2_ScalarView.hpp
1 //
2 // Intrepid2_ScalarView.hpp
3 // QuadraturePerformance
4 //
5 // Created by Roberts, Nathan V on 8/24/20.
6 //
7 
8 #ifndef Intrepid2_ScalarView_h
9 #define Intrepid2_ScalarView_h
10 
11 #include <Kokkos_DynRankView.hpp>
12 #include "Intrepid2_Utils.hpp"
13 
14 namespace Intrepid2
15 {
17  template<typename Scalar, typename ExecSpaceType>
18  using ScalarView = Kokkos::DynRankView<Scalar, ExecSpaceType>;
19 } // end namespace Intrepid2
20 
21 #endif /* Intrepid2_ScalarView_h */
Header function for Intrepid2::Util class and other utility functions.