LCOV - code coverage report
Current view: top level - src/kokkos/kernels - KokkosTimeKernel.K (source / functions) Hit Total Coverage
Test: idaholab/moose framework: #32971 (54bef8) with base c6cf66 Lines: 9 10 90.0 %
Date: 2026-05-29 20:35:17 Functions: 2 2 100.0 %
Legend: Lines: hit not hit

          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 "KokkosTimeKernel.h"
      11             : 
      12             : namespace Moose::Kokkos
      13             : {
      14             : 
      15             : InputParameters
      16        3112 : TimeKernel::validParams()
      17             : {
      18        3112 :   InputParameters params = Kernel::validParams();
      19             : 
      20       12448 :   params.set<MultiMooseEnum>("vector_tags") = "time";
      21        9336 :   params.set<MultiMooseEnum>("matrix_tags") = "system time";
      22             : 
      23        3112 :   return params;
      24           0 : }
      25             : 
      26         506 : TimeKernel::TimeKernel(const InputParameters & parameters)
      27             :   : Kernel(parameters),
      28         300 :     _u_dot(_var, Moose::SOLUTION_DOT_TAG),
      29         300 :     _du_dot_du(_var.sys().duDotDu(_var.number()))
      30             : {
      31         506 : }
      32             : 
      33             : } // namespace Moose::Kokkos

Generated by: LCOV version 1.14