Intrepid2
Intrepid2_DataCombiners_Difference.cpp
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_DataCombiners.cpp
11//
12// Created by Roberts, Nathan V on 6/1/23.
13//
14
16
18
19using DefaultDeviceType = Kokkos::DefaultExecutionSpace::device_type;
20
21namespace Intrepid2
22{
23 template class DataCombiner<double,DefaultDeviceType,ScalarDifferenceFunctor<double> >;
24}
Defines functors that help with combinations of Data objects, such as in-place sums and products.
Defines functors for use with Data objects: so far, we include simple arithmetical functors for sum,...