Lines Matching full:package

28 the past a socket always contained a single package (see below), but with the
29 advent of Multi Chip Modules (MCM) a socket can hold more than one package. So
39 Package chapter
44 AMD nomenclature for package is 'Node'.
46 Package-related topology information in the kernel:
50 The number of cores in a package. This information is retrieved via CPUID.
54 The number of dies in a package. This information is retrieved via CPUID.
58 The physical ID of the package. This information is retrieved via CPUID
59 and deduced from the APIC IDs of the cores in the package.
63 The logical ID of the package. As we do not trust BIOSes to enumerate the
64 packages in a consistent way, we introduced the concept of logical package
71 package facilities to preallocate per package information.
96 The number of threads in a core. The number of threads in a package can be
114 The cpumask contains all online threads in the package to which a thread
126 The logical package ID to which a thread belongs.
130 The physical package ID to which a thread belongs.
149 1) Single Package, Single Core::
151 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
153 2) Single Package, Dual Core
157 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
162 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
169 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
181 4) Dual Package, Dual Core
185 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
188 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
193 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
198 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
205 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
210 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2