aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/kmp_affinity.cpp
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2016-04-25 21:11:26 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2016-04-25 21:11:26 +0000
commit843428ce2ada131537bfcd7be78cd1484b1d2254 (patch)
treee9f3fcf845922a409f30ec2cb25cfe04571fd4c2 /runtime/src/kmp_affinity.cpp
parent3bef31a43cb3f175ff8a41b6c742c7f09e9273d3 (diff)
Remove architecture dependent Hwloc DEBUG section
This debug sections's functionality can be replicated using the environment variable KMP_TOPOLOGY_METHOD with different values and KMP_AFFINITY=verbose git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@267472 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/src/kmp_affinity.cpp')
-rw-r--r--runtime/src/kmp_affinity.cpp30
1 files changed, 0 insertions, 30 deletions
diff --git a/runtime/src/kmp_affinity.cpp b/runtime/src/kmp_affinity.cpp
index 68afb52..3ab76f0 100644
--- a/runtime/src/kmp_affinity.cpp
+++ b/runtime/src/kmp_affinity.cpp
@@ -3777,36 +3777,6 @@ __kmp_aux_affinity_initialize(void)
KMP_ASSERT(address2os == NULL);
return;
}
-# if KMP_DEBUG
- AddrUnsPair *otheraddress2os = NULL;
- int otherdepth = -1;
-# if KMP_MIC
- otherdepth = __kmp_affinity_create_apicid_map(&otheraddress2os, &msg_id);
-# else
- otherdepth = __kmp_affinity_create_x2apicid_map(&otheraddress2os, &msg_id);
-# endif
- if(otheraddress2os != NULL && address2os != NULL) {
- int i;
- unsigned arent_equal_flag = 0;
- for(i=0;i<__kmp_avail_proc;i++) {
- if(otheraddress2os[i] != address2os[i]) arent_equal_flag = 1;
- }
- if(arent_equal_flag) {
- KA_TRACE(10, ("__kmp_aux_affinity_initialize: Hwloc affinity places are different from APICID\n"));
- KA_TRACE(10, ("__kmp_aux_affinity_initialize: APICID Table:\n"));
- for(i=0;i<__kmp_avail_proc;i++) {
- otheraddress2os[i].print(); __kmp_printf("\n");
- }
- KA_TRACE(10, ("__kmp_aux_affinity_initialize: Hwloc Table:\n"));
- for(i=0;i<__kmp_avail_proc;i++) {
- address2os[i].print(); __kmp_printf("\n");
- }
- }
- else {
- KA_TRACE(10, ("__kmp_aux_affinity_initialize: Hwloc affinity places are same as APICID\n"));
- }
- }
-# endif // KMP_DEBUG
}
# endif // KMP_USE_HWLOC