PSCF v1.2
ThreadMesh.h
1#ifndef PSCF_THREADMESH_H
2#define PSCF_THREADMESH_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <util/global.h>
12#include <pscf/math/IntVec.h>
13#include <vector_types.h> // from the CUDA library, defines dim3 type
14
15namespace Pscf {
16
28namespace ThreadMesh {
29
108 template <int D>
109 void setConfig(IntVec<D> const & meshDims, bool invert,
110 int blockSize = -1);
111
118 void checkConfig();
119
125 void setThreadsPerBlock(int blockSize);
126
127 // Accessors
128
132 dim3 gridDims();
133
137 dim3 blockDims();
138
142 dim3 meshDims();
143
147 int warpSize();
148
152 bool hasUnusedThreads();
153
156} // namespace ThreadMesh
157} // namespace Pscf
158#endif
File containing preprocessor macros for error handling.
int warpSize()
Get the warp size.
void setConfig(IntVec< D > const &meshDims, bool invert, int blockSize)
Given a multidimensional grid of threads, set execution configuration.
Definition ThreadMesh.cu:88
void checkConfig()
Check the execution configuration (grid and block dimensions).
bool hasUnusedThreads()
Will there be unused threads?
dim3 gridDims()
Get the multidimensional grid of blocks determined by setConfig.
dim3 meshDims()
Return last requested multidimensional grid of threads.
dim3 blockDims()
Get the dimensions of a single block determined by setConfig.
void setThreadsPerBlock(int blockSize)
Manually set the block size that should be used by default.
PSCF package top-level namespace.
Definition param_pc.dox:1