Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://www.mooseframework.org 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 "KokkosKernelCurl.h" 11 : 12 : namespace Moose::Kokkos 13 : { 14 : 15 : InputParameters 16 2180 : KernelCurl::validParams() 17 : { 18 2180 : InputParameters params = VectorKernel::validParams(); 19 2180 : params.addClassDescription( 20 : "A base class that defines the curl operators for Kokkos vector kernels."); 21 2180 : return params; 22 0 : } 23 : 24 29 : KernelCurl::KernelCurl(const InputParameters & parameters) 25 15 : : VectorKernel(parameters), _curl_test(), _curl_phi(), _curl_u(_var) 26 : { 27 29 : } 28 : 29 : } // namespace Moose::Kokkos