Intrepid2
Intrepid2_ScalarView.hpp
1// @HEADER
2// *****************************************************************************
3// Intrepid2 Package
4//
5// Copyright 2007 NTESS and the Intrepid2 contributors.
6// SPDX-License-Identifier: BSD-3-Clause
7// *****************************************************************************
8// @HEADER
9//
10// Intrepid2_ScalarView.hpp
11// QuadraturePerformance
12//
13// Created by Roberts, Nathan V on 8/24/20.
14//
15
16#ifndef Intrepid2_ScalarView_h
17#define Intrepid2_ScalarView_h
18
19#include <Kokkos_DynRankView.hpp>
20#include "Intrepid2_Utils.hpp"
21
22namespace Intrepid2
23{
25 template<typename Scalar, typename ExecSpaceType>
26 using ScalarView = Kokkos::DynRankView<Scalar, ExecSpaceType>;
27} // end namespace Intrepid2
28
29#endif /* Intrepid2_ScalarView_h */
Header function for Intrepid2::Util class and other utility functions.