Skip to content

Commit

Permalink
[OpenMP][libomp] Switch Intel topology type values: module, tile
Browse files Browse the repository at this point in the history
According to Software Developer Manual, modules should be value 3 and
tile should be value 4.
  • Loading branch information
jpeyton52 committed Jan 18, 2023
1 parent ff6f4ae commit 2aea0a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openmp/runtime/src/kmp_affinity.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2429,8 +2429,8 @@ enum {
INTEL_LEVEL_TYPE_INVALID = 0, // Package level
INTEL_LEVEL_TYPE_SMT = 1,
INTEL_LEVEL_TYPE_CORE = 2,
INTEL_LEVEL_TYPE_TILE = 3,
INTEL_LEVEL_TYPE_MODULE = 4,
INTEL_LEVEL_TYPE_MODULE = 3,
INTEL_LEVEL_TYPE_TILE = 4,
INTEL_LEVEL_TYPE_DIE = 5,
INTEL_LEVEL_TYPE_LAST = 6,
};
Expand Down

0 comments on commit 2aea0a9

Please sign in to comment.