Slashdot Mirror


User: bushk

bushk's activity in the archive.

Stories
0
Comments
4
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4

  1. Re:Doug Berger is an excellent teacher! on Next Generation Chip Research · · Score: 1

    it's funny that a student of his could misspell his name. ;)
    s/berger/burger/g

  2. Re:Is this different from superscalar architecture on Next Generation Chip Research · · Score: 1

    hardly.

    superscaler architectures are dynamic placement, dynamic issue: making it the hardware's responsibility to figure out both WHERE and WHEN to fire an instruction. this carries tremendous control and logic overhead.

    TRIPS is a static placement, dynamic issue architecture: thus the compiler (or assembly language programmer) decides WHERE (IE: which ALU) to place an instruction, and the instructions fire dynamically - in this case, when all of it's inputs have arived.

  3. Re:VLIW (superscalar) ? on Next Generation Chip Research · · Score: 1

    similar in only the following: an effort to provide higher instruction level concurency while minimizing hardware control logic. exactly oposite as follows: VLIW instruction words articulate independence. TRIPS instructions articulate dependence. hardly a conventional superscaler. TRIPS operates on an explicit data graph execution paradigm.

  4. Re:Isn't this what Intel tried to do with Merced? on Next Generation Chip Research · · Score: 1

    absolutely not. in fact, it's the opposite of a VLIW architecture (ex: Itanium). simply: VLIW: compiler specifies independence. TRIPS Datagraph Execution Model: compiler specifies dependence.