25#include "core/DataTypes.h"
26#include "core/logging/Logging.h"
28#include "gpu/GPUField.h"
29#include "gpu/GPUWrapper.h"
31#include "domain_decomposition/BlockDataID.h"
32#include "domain_decomposition/IBlock.h"
33#include "domain_decomposition/StructuredBlockStorage.h"
34#include "field/SwapableCompare.h"
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"
59 BlockDataID velocityID_,
double rho_0)
66 const CellInterval &globalCellInterval,
67 cell_idx_t ghostLayers, IBlock *
block,
68 gpuStream_t
stream =
nullptr);
74 static std::function<void(IBlock *)>
75 getSweep(
const shared_ptr<InitialPDFsSetterDoublePrecisionCUDA> &kernel) {
76 return [kernel](IBlock *b) { kernel->run(b); };
80 const shared_ptr<InitialPDFsSetterDoublePrecisionCUDA> &kernel,
81 const shared_ptr<StructuredBlockStorage> &blocks,
82 const CellInterval &globalCellInterval, cell_idx_t ghostLayers = 1) {
83 return [kernel, blocks, globalCellInterval,
84 ghostLayers](IBlock *b, gpuStream_t
stream =
nullptr) {
85 kernel->runOnCellInterval(blocks, globalCellInterval, ghostLayers, b,
94 std::function<void(IBlock *)>
96 const CellInterval &globalCellInterval,
97 cell_idx_t ghostLayers = 1,
98 gpuStream_t
stream =
nullptr) {
99 return [
this, blocks, globalCellInterval, ghostLayers,
stream](IBlock *b) {
105 void configure(
const shared_ptr<StructuredBlockStorage> &blocks,
117#if (defined WALBERLA_CXX_COMPILER_IS_GNU) || \
118 (defined WALBERLA_CXX_COMPILER_IS_CLANG)
119#pragma GCC diagnostic pop
void runOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers, IBlock *block, gpuStream_t stream=nullptr)
std::function< void(IBlock *)> getSweep(gpuStream_t stream=nullptr)
std::function< void(IBlock *)> getSweepOnCellInterval(const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1, gpuStream_t stream=nullptr)
static std::function< void(IBlock *)> getSweep(const shared_ptr< InitialPDFsSetterDoublePrecisionCUDA > &kernel)
void run(IBlock *block, gpuStream_t stream=nullptr)
InitialPDFsSetterDoublePrecisionCUDA(BlockDataID forceID_, BlockDataID pdfsID_, BlockDataID velocityID_, double rho_0)
static std::function< void(IBlock *, gpuStream_t)> getSweepOnCellInterval(const shared_ptr< InitialPDFsSetterDoublePrecisionCUDA > &kernel, const shared_ptr< StructuredBlockStorage > &blocks, const CellInterval &globalCellInterval, cell_idx_t ghostLayers=1)
void operator()(IBlock *block, gpuStream_t stream=nullptr)
void configure(const shared_ptr< StructuredBlockStorage > &blocks, IBlock *block)
cudaStream_t stream[1]
CUDA streams for parallel computing on CPU and GPU.
static double * block(double *p, std::size_t index, std::size_t size)
\file PackInfoPdfDoublePrecision.cpp \author pystencils