🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

Machine Architecture: Things Your Programming Language Never Told You...

Started by
2 comments, last by ROBERTREAD1 16 years, 9 months ago
... by Herb Sutter in his blog post. Also over two MiB of pdf slides and 117 minutes of Google video included.
Abstract: Programmers are routinely surprised at what simple code actually does and how expensive it can be, because so many of us are unaware of the increasing complexity of the machine on which the program actually runs. This talk examines the "real meanings" and "true costs" of the code we write and run especially on commodity and server systems, by delving into the performance effects of bandwidth vs. latency limitations, the ever-deepening memory hierarchy, the changing costs arising from the hardware concurrency explosion, memory model effects all the way from the compiler to the CPU to the chipset to the cache, and more -- and what you can do about them. Teaser: Would you be surprised to discover that only about 1% (one percent) of all the transistors on your modern CPU exist to ever compute anything? And that the other 99% (ninety-nine percent) of your CPU's transistors are essentially dedicated to nothing but hiding memory latency? Those are round numbers, of course. But you get the idea...
Seem to be touching lightly on the same information as in Computer Organization and Design: The Hardware/Software Interface and Computer Architecture: A Quantitative Approach laced with some C++09. Some of you might be interested.
---Sudet ulvovat - karavaani kulkee
Advertisement
Yes, it was a good talk. Pity I couldn't attend.

In time the project grows, the ignorance of its devs it shows, with many a convoluted function, it plunges into deep compunction, the price of failure is high, Washu's mirth is nigh.

Cool. I'll need to allocate like a three hour block to take a proper look sometime.
SlimDX | Ventspace Blog | Twitter | Diverse teams make better games. I am currently hiring capable C++ engine developers in Baltimore, MD.
IMHO everyone taught 'c' at college should then be taught enough assembly to write simple programs.

Assembly isn't THAT difficult especially 68000

This topic is closed to new replies.

Advertisement