diff options
author | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-06-04 14:22:49 +0200 |
---|---|---|
committer | Birte Kristina Friesel <birte.friesel@uos.de> | 2024-06-04 14:22:49 +0200 |
commit | c38c071f71b05df3a307ed1c24f818a0b3feca86 (patch) | |
tree | 2e06dac171fd545fe521f61526441ea19740dd7d /src/experiment.cpp | |
parent | 1e6f179dce6e87e7cca9d4b86b8d0450df9dbb2f (diff) |
unconditionally compile with NUMA
Diffstat (limited to 'src/experiment.cpp')
-rw-r--r-- | src/experiment.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/experiment.cpp b/src/experiment.cpp index 7551d1f..4b9e31a 100644 --- a/src/experiment.cpp +++ b/src/experiment.cpp @@ -22,9 +22,7 @@ #include <stdlib.h> #include <string.h> #include <unistd.h> -#if defined(NUMA) #include <numa.h> -#endif // Local includes #include "chain.h" @@ -490,10 +488,8 @@ int Experiment::parse_args(int argc, char* argv[]) { break; } -#if defined(NUMA) this->numa_max_domain = numa_max_node(); this->num_numa_domains = this->numa_max_domain + 1; -#endif switch (this->numa_placement) { case LOCAL: |