HiRep 0.1
Loading...
Searching...
No Matches
gpu_affinity.h
1/***************************************************************************\
2* Copyright (c) 2022 Sofie Martins *
3* All rights reserved. *
4\***************************************************************************/
5
6#ifndef GPU_AFFINITY_H
7#define GPU_AFFINITY_H
8
9#ifdef WITH_GPU
10
11#if defined(WITH_MPI) && defined(HWLOC)
12#include <hwloc.h>
13#include <hwloc/cudart.h>
14int find_physically_close_CPU_core();
15#endif
16
17#endif
18#endif