Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Explicitly parallel instruction computing
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{short description|Instruction set architecture}} {{Refimprove|date=October 2010}} '''Explicitly parallel instruction computing''' ('''EPIC''') is a term coined in 1997 by the [[Itanium|HP–Intel alliance]]<ref>{{cite web |url = http://www.hpl.hp.com/techreports/1999/HPL-1999-111.pdf |format=PDF|title = EPIC: An Architecture for Instruction-Level Parallel Processors |access-date = 2008-05-08 |last = Schlansker and Rau |work = HP Laboratories Palo Alto, HPL-1999-111 |date=February 2000 }}</ref> to describe a [[computing paradigm]] that researchers had been investigating since the early 1980s.<ref>{{cite patent|country=US|number=4847755|pubdate=1989-07-11|title=Parallel processing method and apparatus for increasing processing throughout by parallel processing low level instructions having natural concurrencies|assign1=MCC Development Ltd.|inventor1-last=Morrison|inventor1-first=Gordon E.|inventor2-last=Brooks|inventor2-first=Christopher B.|inventor3-last=Gluck|inventor3-first=Frederick G.}}</ref> This paradigm is also called ''Independence'' architectures. It was the basis for [[Intel]] and [[Hewlett-Packard|HP]] development of the Intel [[Itanium]] architecture,<ref name="HP_Labs">{{cite web | url = http://www.hpl.hp.com/news/2001/apr-jun/itanium.html | title = Inventing Itanium: How HP Labs Helped Create the Next-Generation Chip Architecture | access-date = 2007-12-14 | date = June 2001 | work = [[Hewlett-Packard|HP]] Labs | archive-date = 2012-03-04 | archive-url = https://web.archive.org/web/20120304045612/http://www.hpl.hp.com/news/2001/apr-jun/itanium.html | url-status = dead }}</ref> and [[Hewlett-Packard|HP]] later asserted that "EPIC" was merely an old term for the Itanium architecture.<ref name="anand">{{cite web | url = http://www.anandtech.com/cpuchipsets/showdoc.aspx?i=2598 | title = Itanium–Is there light at the end of the tunnel? | access-date = 2008-05-08 | last = De Gelas | first = Johan | date = November 9, 2005 | work = [[AnandTech]] }}</ref> EPIC permits microprocessors to execute software instructions in parallel by using the [[compiler]], rather than complex on-[[die (integrated circuit)|die]] circuitry, to control parallel instruction execution. This was intended to allow simple performance scaling without resorting to higher [[clock rate|clock frequencies]]. ==Roots in VLIW== By 1989, researchers at HP recognized that [[reduced instruction set computer]] (RISC) architectures were reaching a limit at one [[instruction per cycle]].{{Clarify|date=September 2009}} They began an investigation into a new architecture, later named '''EPIC'''.<ref name="HP_Labs"/> The basis for the research was [[Very long instruction word|VLIW]], in which multiple operations are encoded in every instruction, and then processed by multiple execution units. One goal of EPIC was to move the complexity of instruction scheduling from the CPU hardware to the software [[compiler]], which can do the instruction scheduling statically (with help of trace feedback information). This eliminates the need for complex scheduling circuitry in the CPU, which frees up space and power for other functions, including additional execution resources. An equally important goal was to further exploit [[instruction-level parallelism]] (''ILP'') by using the compiler to find and exploit additional opportunities for [[parallel computing|parallel execution]]. ''VLIW'' (at least the original forms) has several short-comings that precluded it from becoming mainstream: * VLIW [[instruction set]]s are not [[backward compatibility|backward compatible]] between implementations. When [[wide-issue|wider]] implementations (more [[execution unit]]s) are built, the instruction set for the wider machines is not backward compatible with older, narrower implementations. * Load responses from a [[memory hierarchy]] which includes [[CPU cache]]s and [[DRAM]] do not have a deterministic delay.{{why|date=March 2024}} This makes static scheduling of load instructions by the compiler very difficult. EPIC architecture evolved from VLIW architecture, but retained many concepts of the [[superscalar]] architecture. ==Moving beyond VLIW== ''EPIC'' architectures add several features to get around the deficiencies of VLIW: * Each group of multiple software instructions is called a ''bundle''. Each of the bundles has a [[stop bit]] indicating if this set of operations is depended upon by the subsequent bundle. With this capability, future implementations can be built to issue multiple bundles in parallel. The dependency information is calculated by the compiler, so the hardware does not have to perform operand dependency checking. * A software prefetch instruction is used as a type of data prefetch. This prefetch increases the chances for a cache hit for loads, and can indicate the degree of temporal locality needed in various levels of the cache. * A speculative load instruction is used to speculatively load data before it is known whether it will be used (bypassing control dependencies), or whether it will be modified before it is used (bypassing data dependencies). * A check load instruction aids speculative loads by checking whether a speculative load was dependent on a later store, and thus must be reloaded. The ''EPIC'' architecture also includes a ''grab-bag'' of architectural concepts to increase [[Instruction-level_parallelism|''ILP'']]: * [[Branch predication|Predicated execution]] is used to decrease the occurrence of branches and to increase the [[speculative execution]] of instructions. In this feature, branch conditions are converted to predicate registers which are used to kill results of executed instructions from the side of the branch which is not taken. * Delayed exceptions, using a [[Not a thing (computing)|not a thing]] bit within the general purpose registers, allow speculative execution past possible exceptions. * Very large architectural [[register file]]s avoid the need for [[register renaming]]. * Multi-way branch instructions improve branch prediction by combining many alternative branches into one bundle. The [[Itanium]] architecture also added [[Register window|rotating register file]]s, a tool useful for [[software pipelining]] since it avoids having to manually [[Loop unrolling|unroll]] and rename registers. ==Other research and development== There have been other investigations into EPIC architectures that are not directly tied to the development of the Itanium architecture: *The [[Impact (research group)|IMPACT]] project at [[University of Illinois at Urbana–Champaign]], led by [[Wen-mei Hwu]], was the source of much influential research on this topic. *The [[PlayDoh]] architecture from HP-labs was another major research project. *[[Gelato Federation|Gelato]] was an open source development community in which academic and commercial researchers worked to develop more effective compilers for Linux applications running on Itanium servers. ==See also== *[[Complex instruction set computer]] (CISC) *[[Reduced instruction set computer]] (RISC) *[[Minimal instruction set computer]] (MISC) *[[Very long instruction word]] (VLIW) *[[No instruction set computing]] *[[One-instruction set computer]] *[[Computer architecture]] *[[Superscalar_processor|Superscalar]] *[[Wide-issue]] ==References== {{reflist}} ==External links== * [http://www.cs.clemson.edu/~mark/epic.html Historical background for EPIC] * Mark Smotherman (2002) "[http://www.cs.clemson.edu/~mark/464/acmse_epic.pdf Understanding EPIC Architectures and Implementations]" {{CPU technologies}} {{DEFAULTSORT:Explicitly Parallel Instruction Computing}} [[Category:Instruction processing]] [[Category:Very long instruction word computing]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:CPU technologies
(
edit
)
Template:Cite patent
(
edit
)
Template:Cite web
(
edit
)
Template:Clarify
(
edit
)
Template:Refimprove
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)
Template:Why
(
edit
)