/* * ======================================================================================= * * Author: Jan Eitzinger (je), jan.eitzinger@fau.de * Copyright (c) 2019 RRZE, University Erlangen-Nuremberg * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in all * copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * ======================================================================================= */ #ifdef __linux__ #ifdef _OPENMP #include #include #include #include #include #include #include #define MAX_NUM_THREADS 128 #define gettid() syscall(SYS_gettid) static int getProcessorID(cpu_set_t* cpu_set) { int processorId; for ( processorId = 0; processorId < MAX_NUM_THREADS; processorId++ ) { if ( CPU_ISSET(processorId,cpu_set) ) { break; } } return processorId; } int affinity_getProcessorId() { cpu_set_t cpu_set; CPU_ZERO(&cpu_set); sched_getaffinity(gettid(),sizeof(cpu_set_t), &cpu_set); return getProcessorID(&cpu_set); } void affinity_pinThread(int processorId) { cpu_set_t cpuset; pthread_t thread; thread = pthread_self(); CPU_ZERO(&cpuset); CPU_SET(processorId, &cpuset); pthread_setaffinity_np(thread, sizeof(cpu_set_t), &cpuset); } void affinity_pinProcess(int processorId) { cpu_set_t cpuset; CPU_ZERO(&cpuset); CPU_SET(processorId, &cpuset); sched_setaffinity(0, sizeof(cpu_set_t), &cpuset); } #endif /*_OPENMP*/ #endif /*__linux__*/