Мультипроцесорність
Одночасне використання кількох процесорів.
🌐 Терміни іншими мовами:
Multiprocessing refers to a system's ability to support more than one processor and/or the ability to allocate tasks between them. This allows for higher throughput and better fault tolerance. Symmetric Multiprocessing (SMP) is the most common form.
graph LR
Center["Мультипроцесорність"]:::main
Rel_pipelining["pipelining"]:::related -.-> Center
click Rel_pipelining "/terms/pipelining"
Rel_process["process"]:::related -.-> Center
click Rel_process "/terms/process"
Rel_parallelism["parallelism"]:::related -.-> Center
click Rel_parallelism "/terms/parallelism"
classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
linkStyle default stroke:#4b5563,stroke-width:2px;
🧠 Перевірка знань
1 / 1
🧒 Простими словами
Мультипроцесорність — це як мати два або більше мозків, що працюють разом в одному тілі. Вони можуть виконувати вдвічі більше роботи, розподіляючи навантаження.
🤓 Expert Deep Dive
Когерентність кешу — головний виклик у мультипроцесорності, що забезпечується протоколами на кшталт MESI. Архітектури NUMA використовуються у великих багатопроцесорних серверах.