指令级并行性 当程序员们听到并行这个词时,大多数都会想到多核并行性,即明确地将计算分割成一个个半独立的线程,这些线程同时工作以解决一个共同问题。 这种类型的并行主要是用来减少延迟和实现可扩展性,而不是提高效率。我们可以使用并行算法来解决一个比原来大十倍的问题,但它至少需要十倍的计算资源。尽管并行硬件...
超长指令字(VLIW:Very long instruction word) 指的是一种被设计为可以利用指令级并行(ILP)优势的CPU体系结构,。一个按照顺序执行指令的非超标量处理器不能充分的利用处理器的资源,有可能导致低性能。 性能可以通过同时执行一系列指令中的不同子步骤来提高(这就是流水线),或者像超标量架构一样,甚至完全的并行执行...
本节的主题是介绍CPU是如何利用ILP(instruction level parallelism)加速顺序代码的运行. 本节只介绍单核CPU, 多核CPU将在下一节介绍. 本节的主要内容为: 流水线(pipelining)与超标量(Superscalaer): 他们是一次执行多条指令的技术. 乱序执行(Out of order execution): 一种动态调度调整指令执行顺序的技术. 投机...
Since its introduction decades ago, Instruction Level Parallelism (ILP) has gradually become ubiquitous and is now featured in virtually every processor built today, from general purpose CPUs to application-specific and embedded processors. Because these architectures could not exist or (in the case ...
instruction level parallelism 英[inˈstrʌkʃən ˈlevl ˈpærəlelizəm]美[ɪnˈstrʌkʃən ˈlɛvəl ˈpærəlɛlˌɪzəm]释义 常用 牛津词典 释义 指令级并行;拍照翻译 语音翻译 智能背词 下载金山词霸APP...
Related to Instruction-level parallelism: instruction word, VLIWmultithreading (ˌmʌltɪˈθrɛdɪŋ) n (Computer Science) a feature of a computer operating system that allows it to run several parts of a program concurrently or in quick succession Collins English Dictionary – Compl...
In subject area: Computer Science Instruction-Level Parallelism (ILP) refers to the technique of executing multiple instructions simultaneously within a CPU core by keeping different functional units busy for different parts of instructions or providing multiple functional units for the same operation. It...
出版年:1993-5 页数:282 定价:$ 381.94 ISBN:9780792393672 豆瓣评分 目前无人评价 评价: 写笔记 写书评 加入购书单 分享到 内容简介· ··· Instruction-Level Parallelism presents a collection of papers that attempts to capture the most significant work that took place during the 1980s in the area ...
英文缩写 ILP 英文缩写ILP 英文全称Instruction Level Parallelism 中文解释指令级平行运算 ILP意思,ILP的意思,ILP是什么意思?爱站小工具网缩写频道为您提供有关于ILP的解释和缩写,指令级平行运算的英文缩写是什么
3.1 Instruction-Level Parallelism: Concepts and Challenges 自1985年以后,所有的处理器都使用流水化技术来“重叠”指令的执行过程,从而可以能够提高性能。 这种在指令中能够重叠的能力称为指令级并行(instruction-level parallelism,ILP)。 在本节和附录H都会对指令级并行进行研究。 What Is Instruction-Level Parallelism...