From c38c071f71b05df3a307ed1c24f818a0b3feca86 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Tue, 4 Jun 2024 14:22:49 +0200 Subject: unconditionally compile with NUMA --- src/run.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/run.cpp') diff --git a/src/run.cpp b/src/run.cpp index 669b0f3..baa5b02 100644 --- a/src/run.cpp +++ b/src/run.cpp @@ -23,9 +23,7 @@ #include #include #include -#if defined(NUMA) #include -#endif // Local includes #include @@ -67,7 +65,6 @@ int Run::run() { Chain** chain_memory = new Chain*[this->exp->chains_per_thread]; Chain** root = new Chain*[this->exp->chains_per_thread]; -#if defined(NUMA) // establish the node id where this thread // will run. threads are mapped to nodes // by the set-up code for Experiment. @@ -86,11 +83,6 @@ int Run::run() { chain_memory[i] = new Chain[ this->exp->links_per_chain ]; } -#else - for (int i = 0; i < this->exp->chains_per_thread; i++) { - chain_memory[i] = new Chain[this->exp->links_per_chain]; - } -#endif // initialize the chains and // select the function that -- cgit v1.2.3