https://mooseframework.inl.gov
Loading...
Searching...
No Matches
KokkosElementReducer.h
Go to the documentation of this file.
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#pragma once
11
12#include "KokkosReducerBase.h"
13
14#include "BlockRestrictable.h"
15
16namespace Moose::Kokkos
17{
18
20{
21public:
23
24 ElementReducer(const MooseObject * object);
25
30
31 virtual ThreadID numReducerThreads() const override { return numKokkosBlockElements(); }
32
36 template <typename Derived>
37 KOKKOS_FUNCTION void
38 operator()(ReducerLoop, const ThreadID tid, const Derived & reducer, Real * result) const;
39};
40
41template <typename Derived>
42KOKKOS_FUNCTION void
44 const ThreadID tid,
45 const Derived & reducer,
46 Real * result) const
47{
48 auto elem = kokkosBlockElementID(tid);
49
50 Datum datum(elem, libMesh::invalid_uint, kokkosAssembly(), kokkosSystems());
51
52 reducer.template reduce<Derived>(datum, result);
53}
54
55} // namespace Moose::Kokkos
An interface that restricts an object to subdomains via the 'blocks' input parameter.
KOKKOS_FUNCTION dof_id_type numKokkosBlockElements() const
Get the number of elements this Kokkos object is operating on.
KOKKOS_FUNCTION ContiguousElementID kokkosBlockElementID(Moose::Kokkos::ThreadID tid) const
Get the contiguous element ID this Kokkos thread is operating on.
The main MOOSE class responsible for handling user-defined parameters in almost every MOOSE system.
Every object that can be built by the factory should be derived from this class.
Definition MooseObject.h:31
KOKKOS_FUNCTION const Assembly & kokkosAssembly() const
Get the const reference of the Kokkos assembly.
The Kokkos object that holds thread-private data in the parallel operations of any Kokkos object.
ElementReducer(const ElementReducer &object)
Copy constructor for parallel dispatch.
KOKKOS_FUNCTION void operator()(ReducerLoop, const ThreadID tid, const Derived &reducer, Real *result) const
The parallel computation entry function called by Kokkos.
ElementReducer(const MooseObject *object)
virtual ThreadID numReducerThreads() const override
Get the number of threads.
static InputParameters validParams()
MOOSE_KOKKOS_INDEX_TYPE ThreadID
const unsigned int invalid_uint