Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "KokkosAverageValue.h" 11 : 12 : template <typename Base> 13 : InputParameters 14 4740 : KokkosAverageValue<Base>::validParams() 15 : { 16 4740 : InputParameters params = Base::validParams(); 17 9480 : params.set<bool>("average") = true; 18 4740 : params.suppressParameter<bool>("average"); 19 4740 : return params; 20 0 : } 21 : 22 : template <typename Base> 23 272 : KokkosAverageValue<Base>::KokkosAverageValue(const InputParameters & parameters) : Base(parameters) 24 : { 25 272 : } 26 : 27 : template class KokkosAverageValue<KokkosElementIntegralVariablePostprocessor>; 28 : template class KokkosAverageValue<KokkosSideIntegralVariablePostprocessor>;