• Home
  • Raw
  • Download

Lines Matching full:core

89       - On AMD, the Node ID or Core Complex ID containing the Last Level
95 A core consists of 1 or more threads. It does not matter whether the threads
98 AMDs nomenclature for a CMT core is "Compute Unit". The kernel always uses
99 "core".
101 Core-related topology information in the kernel:
105 The number of threads in a core. The number of threads in a package can be
116 AMDs nomenclature for CMT threads is "Compute Unit Core". The kernel always
130 The cpumask contains all online threads in the core to which a thread
143 The ID of the core to which a thread belongs. It is also printed in /proc/cpuinfo
158 1) Single Package, Single Core::
160 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
162 2) Single Package, Dual Core
164 a) One thread per core::
166 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
167 -> [core 1] -> [thread 0] -> Linux CPU 1
169 b) Two threads per core::
171 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
173 -> [core 1] -> [thread 0] -> Linux CPU 2
178 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
180 -> [core 1] -> [thread 0] -> Linux CPU 1
185 [node 0] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 0
186 -> [Compute Unit Core 1] -> Linux CPU 1
187 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 2
188 -> [Compute Unit Core 1] -> Linux CPU 3
190 4) Dual Package, Dual Core
192 a) One thread per core::
194 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
195 -> [core 1] -> [thread 0] -> Linux CPU 1
197 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
198 -> [core 1] -> [thread 0] -> Linux CPU 3
200 b) Two threads per core::
202 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
204 -> [core 1] -> [thread 0] -> Linux CPU 2
207 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
209 -> [core 1] -> [thread 0] -> Linux CPU 6
214 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
216 -> [core 1] -> [thread 0] -> Linux CPU 1
219 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
221 -> [core 1] -> [thread 0] -> Linux CPU 3
226 [node 0] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 0
227 -> [Compute Unit Core 1] -> Linux CPU 1
228 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 2
229 -> [Compute Unit Core 1] -> Linux CPU 3
231 [node 1] -> [Compute Unit 0] -> [Compute Unit Core 0] -> Linux CPU 4
232 -> [Compute Unit Core 1] -> Linux CPU 5
233 -> [Compute Unit 1] -> [Compute Unit Core 0] -> Linux CPU 6
234 -> [Compute Unit Core 1] -> Linux CPU 7