25#include "core/DataTypes.h"
26#include "core/logging/Logging.h"
28#include "domain_decomposition/BlockDataID.h"
29#include "domain_decomposition/IBlock.h"
30#include "domain_decomposition/StructuredBlockStorage.h"
31#include "field/GhostLayerField.h"
32#include "field/SwapableCompare.h"
35#include <unordered_map>
38#define RESTRICT __restrict__
40#define RESTRICT __restrict
45#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
46 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
47#pragma GCC diagnostic push
48#pragma GCC diagnostic ignored "-Wunused-parameter"
49#pragma GCC diagnostic ignored "-Wreorder"
58 : jID(jID_), rhoID(rhoID_) {}
63 const CellInterval &globalCellInterval,
64 cell_idx_t ghostLayers, IBlock *
block);
68 static std::function<void(IBlock *)>
69 getSweep(
const shared_ptr<ContinuityKernel_double_precision> &kernel) {
70 return [kernel](IBlock *b) { kernel->run(b); };
74 const shared_ptr<ContinuityKernel_double_precision> &kernel,
75 const shared_ptr<StructuredBlockStorage> &blocks,
76 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
77 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
78 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
83 return [
this](IBlock *b) { this->
run(b); };
86 std::function<void(IBlock *)>
88 const CellInterval &globalCellInterval,
89 cell_idx_t ghostLayers = 1) {
90 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
95 void configure(
const shared_ptr<StructuredBlockStorage> & ,
106#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
107 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
108#pragma GCC diagnostic pop
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< ContinuityKernel_double_precision > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
void operator()(IBlock *block)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
ContinuityKernel_double_precision(BlockDataID jID_, BlockDataID rhoID_)
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
static std::function< void(IBlock *)> getSweep(const shared_ptr< ContinuityKernel_double_precision > &kernel)
std::function< void(IBlock *)> getSweep()
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils