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 BlockDataID velocityID_)
59 : forceID(forceID_), pdfsID(pdfsID_), velocityID(velocityID_) {}
62 for (
auto p : cache_pdfs_) {
70 const CellInterval &globalCellInterval,
71 cell_idx_t ghostLayers, IBlock *
block);
75 static std::function<void(IBlock *)>
76 getSweep(
const shared_ptr<StreamSweepDoublePrecisionAVX> &kernel) {
77 return [kernel](IBlock *b) { kernel->run(b); };
81 const shared_ptr<StreamSweepDoublePrecisionAVX> &kernel,
82 const shared_ptr<StructuredBlockStorage> &blocks,
83 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
84 return [kernel, blocks, globalCellInterval, ghostLayers](IBlock *b) {
85 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b);
90 return [
this](IBlock *b) { this->
run(b); };
93 std::function<void(IBlock *)>
95 const CellInterval &globalCellInterval,
96 cell_idx_t ghostLayers = 1) {
97 return [
this, blocks, globalCellInterval, ghostLayers](IBlock *b) {
102 void configure(
const shared_ptr<StructuredBlockStorage> & ,
108 BlockDataID velocityID;
109 std::unordered_map<IBlock *, field::GhostLayerField<double, 19> *>
116#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
117 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
118#pragma GCC diagnostic pop
void operator()(IBlock *block)
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
static std::function< void(IBlock *)> getSweep(const shared_ptr< StreamSweepDoublePrecisionAVX > &kernel)
static std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StreamSweepDoublePrecisionAVX > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
~StreamSweepDoublePrecisionAVX()
StreamSweepDoublePrecisionAVX(BlockDataID forceID_, BlockDataID pdfsID_, BlockDataID velocityID_)
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block)
std::function< void(IBlock *)> getSweep()
void configure(const shared_ptr< StructuredBlockStorage > &, IBlock *)
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils