PSCF v1.2
ThreadArray.h
1#ifndef PSCF_THREAD_ARRAY_H
2#define PSCF_THREAD_ARRAY_H
3
4#include <util/global.h>
5
6namespace Pscf {
7
11namespace ThreadArray {
12
25 void init();
26
32 void setThreadsPerBlock();
33
39 void setThreadsPerBlock(int nThreadsPerBlock);
40
51
65
81
89
90 // Accessors
91
95 int nBlocks();
96
100 int nThreads();
101
105 int nThreadsLogical();
106
110 int warpSize();
111
117 bool hasUnusedThreads();
118
121} // namespace ThreadArray
122} // namespace Pscf
123#endif
File containing preprocessor macros for error handling.
void checkExecutionConfig()
Check the execution configuration (threads and block counts).
int warpSize()
Get the warp size.
void init()
Initialize static variables in Pscf::ThreadArray namespace.
void setThreadsLogical(int nThreadsLogical)
Given total number of threads, set 1D execution configuration.
int nThreads()
Get the number of threads per block for execution.
int nThreadsLogical()
Return previously requested total number of threads.
bool hasUnusedThreads()
Indicates whether there will be unused threads.
void setThreadsPerBlock()
Set the number of threads per block to a default value.
int nBlocks()
Get the current number of blocks for execution.
PSCF package top-level namespace.
Definition param_pc.dox:1