|
| 1 | +Glossary |
| 2 | +========================================================== |
| 3 | + |
| 4 | +Homogeneous Memory System |
| 5 | + A system that operates on a single type of memory implemented using a single |
| 6 | + technology. |
| 7 | + |
| 8 | +Heterogeneous Memory System |
| 9 | + A system that operates on multiple types of memories, possibly implemented |
| 10 | + using different technologies, often managed by different entities. |
| 11 | + |
| 12 | +Memory Tiering |
| 13 | + An organization of different types of memory storage within a system, each |
| 14 | + having distinct characteristics, performance, and cost attributes. These |
| 15 | + memory tiers are typically organized in a hierarchy, with faster, more |
| 16 | + expensive memory located closer to the processor and slower, less expensive |
| 17 | + memory located further away. |
| 18 | + |
| 19 | +Memory Access Initiator |
| 20 | + A component in a computer system that initiates or requests access to the |
| 21 | + computer's memory subsystem. This could be a CPU, GPU, or other I/O and cache |
| 22 | + devices. |
| 23 | + |
| 24 | +Memory Target |
| 25 | + Any part of the memory subsystem that can handle memory access requests. This |
| 26 | + could be the OS-accessible main memory (RAM), video memory that resides on |
| 27 | + the graphics cards, memory caches, storage, external memory devices connected |
| 28 | + using CXL.mem protocol, etc. |
| 29 | + |
| 30 | +Memory Page |
| 31 | + A fixed-length contiguous block of virtual memory, described by a single |
| 32 | + entry in the page table. It is the smallest unit of data for memory |
| 33 | + management in a virtual memory operating system. |
| 34 | + |
| 35 | +Enlightened Application |
| 36 | + An application that explicitly manages data allocation distribution among |
| 37 | + different types of memory and handles data migration between them. |
| 38 | + |
| 39 | +Unenlightened Application |
| 40 | + An application that relies on the underlying infrastructure (OS, frameworks, |
| 41 | + libraries) that offers various memory tiering and migration solutions without |
| 42 | + any code modifications. |
| 43 | + |
| 44 | +Memory Pool |
| 45 | + A memory management technique used in computer programming and software |
| 46 | + development, where relatively large blocks of memory are preallocated using |
| 47 | + memory provider and then passed to a pool allocator for fine-grain |
| 48 | + management. The pool allocator could divide these blocks into smaller chunks |
| 49 | + and use them for application allocations depending on its needs. Typically |
| 50 | + pool allocators focus on the low fragmentation and constant allocation time, |
| 51 | + so they are used to optimize memory allocation and deallocation in scenarios |
| 52 | + where efficiency and performance are critical. |
| 53 | + |
| 54 | +Pool Allocator |
| 55 | + A memory allocator type used to efficiently manage memory pools. Among the |
| 56 | + existing ones are jemalloc or oneTBB's Scalable Memory Allocator. |
| 57 | + |
| 58 | +Memory Provider |
| 59 | + A software component responsible for supplying memory or managing memory |
| 60 | + targets. A single memory provider can efficiently manage the memory |
| 61 | + operations for one or multiple devices within the system or other memory |
| 62 | + sources like file-backed or user-provided memory. Memory providers are |
| 63 | + responsible for coarse-grain allocations and management of memory pages. |
| 64 | + |
| 65 | +High Bandwidth Memory (HBM) |
| 66 | + A high-speed computer memory. It is used in conjunction with high-performance |
| 67 | + graphics accelerators, network devices, and high-performance data centers, as |
| 68 | + on-package cache in CPUs, FPGAs, supercomputers, etc. |
| 69 | + |
| 70 | +Compute Express Link (`CXL`_) |
| 71 | + An open standard for high-speed, high-capacity central processing unit |
| 72 | + (CPU)-to-device and CPU-to-memory connections, designed for high-performance |
| 73 | + data center computers. CXL is built on the serial PCI Express (PCIe) physical |
| 74 | + and electrical interface and includes PCIe-based block input/output protocol |
| 75 | + (CXL.io), cache-coherent protocols for accessing system memory (CXL.cache), |
| 76 | + and device memory (CXL.mem). |
| 77 | + |
| 78 | +oneAPI Threading Building Blocks (`oneTBB`_) |
| 79 | + A C++ template library developed by Intel for parallel programming on |
| 80 | + multi-core processors. TBB broke down the computation into tasks that can run |
| 81 | + in parallel. The library manages and schedules threads to execute these tasks. |
| 82 | + |
| 83 | +jemalloc |
| 84 | + A general-purpose malloc implementation that emphasizes fragmentation |
| 85 | + avoidance and scalable concurrency support. It provides introspection, memory |
| 86 | + management, and tuning features functionalities. `Jemalloc`_ uses separate |
| 87 | + pools (“arenas”) for each CPU which avoids lock contention problems in |
| 88 | + multithreading applications and makes them scale linearly with the number of |
| 89 | + threads. |
| 90 | + |
| 91 | +Unified Shared Memory (USM) |
| 92 | + A programming model which provides a single memory address space that is |
| 93 | + shared between CPUs, GPUs, and possibly other accelerators. It simplifies |
| 94 | + memory management by transparently handling data migration between the CPU |
| 95 | + and the accelerator device as needed. |
| 96 | + |
| 97 | +.. _CXL: https://www.computeexpresslink.org/ |
| 98 | +.. _oneTBB: https://oneapi-src.github.io/oneTBB/ |
| 99 | +.. _Jemalloc: https://jemalloc.net/ |
0 commit comments