QDP++
qdp_generic_threadbind.cc
Go to the documentation of this file.
1#include "qdp.h"
2#include "qdp_threadbind.h"
3
4namespace QDP {
5
6 // Default: User should use runtime
7 void setThreadAffinity(int nCores, int threadsPerCore)
8 {
9 QDPIO::cout << "Direct thread affinity not implemented for this architecture. Please use GOMP_CPU_AFFINITY, KMP_AFFINITY or other appropriate method\n";
10 }
11
12 // Default: User should use runtiem
13 void reportAffinity()
14 {
15 QDPIO::cout << "Affinity reporting not implemented for this architecture\n";
16 }
17
18
19}; // END namespace
20
StandardOutputStream cout
Definition qdp_stdio.cc:21
Yet another random number generator.
void setThreadAffinity(int nCores, int threadsPerCore)
void reportAffinity()
Primary include file for QDP.