pfor/src/pfor/strategies/parameters.h

15 lines
198 B
C++

#ifndef PFOR_PFOR_STRATEGIES_PARAMETERS_H
#define PFOR_PFOR_STRATEGIES_PARAMETERS_H
#include <cstdint>
namespace pfor {
struct ParallelForParameters {
static std::size_t nThreads;
};
}
#endif