Nintendo Wii U Teardown Reveals Simple Design
Vigile writes "Nintendo has never been known to be very aggressive with its gaming console hardware and with today's release (in the U.S.) of the Wii U we are seeing a continuation of that business model. PC Perspective spent several hours last night taking apart a brand new console to reveal a very simplistic board and platform design topped off with the single multi-chip module that holds the IBM PowerPC CPU and the AMD GPU. The system includes 2GB of GDDR3 memory from Samsung and Foxconn/Hon-Hai built wireless controllers for WiFi and streaming video the gamepad. Even though this system is five years newer, many analysts estimate the processing power of Nintendo's Wii U to be just ahead of what you have in the Xbox 360 today."
that's the nintendo way. which device from them had a complicated board or cutting edge performance?
world was created 5 seconds before this post as it is.
Of course, part of the problem is just how you define 'Just ahead of'. Part of the problem in the last cycle with the PS3 particularly, from what I undestand, was the complexity of developing the software for the multi-core Cell processor architecture. Even if the speed of the Wii U overall isn't much better overall, the fact that the architecture is simpler may make it easier for developers to wring better performance out of their games. The fastest system in the world isn't going to matter if it's so hard to develop for that you end up writing poorly performant code.
We'll have to wait and see how well newly released titles post-launch are able to do with the new hardware.
Somewhat misleading. While the CPU power of the Wii U most certainly lies in the realm of what you see in the 360 (rumor is it's basically a 3 core, overclocked Wii processor), the video power is a decent step up. We're talking about a semi modern GPU that supports all sorts of bells and whistles none of the last gen consoles did. The Wii U will most certainly be left in the dust by the PS4/720, but the beautiful thing about it is that it should probably be able to play next gen multi-platform ports in 720p. Which will be fine for most people, as half the HDTVs out there are only 720p to begin with (and look just fine).
Depends how you measure it. Graphics are better but the 3-core PowerPC processor is weaker.
Do you even lift?
These aren't the 'roids you're looking for.
It depends entirely on the developer. Call of Duty apparenty runs much better than on the other two. http://arstechnica.com/gaming/2012/09/wii-u-coming-to-america-sunday-november-18/ and keeping it mind not only is COD running at 60 FPS on one screen, but it's updating a second screen. The AC series isn't even the pinnacle of good gaming. They knock out a title a year and the performance in the previous games wasn't even that great on the current systems. Probably because it's hard to optimise for something when you're too busy trying to knock out a game in record time.
It will almost certainly be the least capable system of its generation but it's not easy to compare it against the current generation for the mere fact developers are only learning how to use it, it has more screens and it will no doubt make it more obvious which developers are better than others.
The more grunt the system has, the harder it becomes to make effective use of that grunt.
It's ridiculously easy to make effective use of that grunt. It's trivial to bring a modern octocore 4 GPU SLI machine to its knees. The PS3 was hard to program for because it was a weird and non-standard hardware model that had poor development tools.
When you get right down to it: why does the CPU and GPU grunt under the hood matter? Only so they can power the graphics, physics, and AI effects of the games. Come up with a game that's fun to play, and people won't care how powerful the console is, as long as that game will run. We're seeing this play out in a major way on the iPhone and iPad.
Because graphics, physics and AI all make the game fun. How many game reviews have you heard complain about "stupid enemies".
The reason we had "monsters in corridors" games for so long was because that's all that we could render well. If you have more "grunt" at your disposal you can start creating more immersive and expansive worlds. Imagine Red Dead Redemption if you couldn't leave the canyon because nothing could render the rest of the world? Hardware enables new game-play capabilities.
There are certainly more gaming opportunities with 2D and other lightweight rendering technology but I remember being completely and utterly blown away by Zelda Ocarina of Time due to the leap into a 3D world with characters I could *see* and interact with.
As to the rise of tablets and cell phones... the GPUs and CPUs in a latest generation cell phone or tablet is nearly on par with an Xbox 360 if you are willing to sacrifice resolution. The latest PowerVR chipsets even support DX11.
Posting anonymously, just because.
Speaking as a developer who's worked on the PS3, the Xbox 360 and the WiiU. The CPU on the WiiU has some nice things on it. But its not as powerful as the Xbox360 chip. I think N went to IBM and asked them: 'What's cheap to put on the chip?' and IBM said 'Well we have this sh*t that no-one wants.' and N said 'we'll take it.'. It does have better branch prediction than the PPCs in the PS3 and Xbox360.
The Espresso chip doesn't have any sort of vector processing. It does have paired singles, but that's a pain, a real pain to use. The floating point registers are 64 bit doubles, so when people talk about paired singles I assumed you split the register in two. No the registers are actually 96 bits wide, its actually a double and a single. To load it you have to load in your single, do a merge operation to move that single to the upper 32 bits, and load in your second one. This makes the stacks explode, because to save a floating point register in the callee takes three operations, and 12 bytes no matter what.
While the WiiU has 1 gig of RAM available to the game to use, the RAM is slow. The cache on the chip is also slow. We had tested out memory bandwidth between cache and main memory on the xbox360 and the WiiU. The main memory access on the Xbox360 is about 2x-4x times as fast as accesses the cache on the WiiU. Yes I mean that the external to the chip RAM on the Xbox360 is faster than the cache memory on the WiiU. I don't remember the full results but I think we figured out accessing the hard drive on the Xbox360 was faster than the RAM on the WiiU too.
The optical drive is also slow. I don't know for sure but it feels like the same drive that went into the PS3. And on the PS3 we used the hard drive to cache things to improve load speeds. Without a hard drive on the WiiU we can't do that.
I won't go into the OS, and the programming environment, but let me just say I hate programming for Windows, and I prefer programming on the Xbox360 to the WiiU.
While the GPU in the WiiU is better (probably because ATI doesn't make anything worse these days), they don't have the CPU and RAM to back it up. Who knows maybe things will be better from launch, but I'm glad to leave the WiiU behind.
I don't remember the full results but I think we figured out accessing the hard drive on the Xbox360 was faster than the RAM on the WiiU too.
Forgive me if Im skeptical of an AC claiming that a company who has been creating consoles for 30+ years managed to make RAM slower than disk access. That would be basically impossible to pull off even if you were specifically trying to do so; theres about 3 orders of magnitude difference between the speed of the two.
Cache vs RAM is also a bit hard to believe, but at least there youre only talking one or two orders of magnitude.
OP AC:
I used to code for Wii. Haven't coded for WiiU. So I cannot tell, only extrapolating from what you are saying here.
However, what you are giving as info is mostly the same than Wii used to have. I expected they kept full compatibility between the WiiU and the Wii, so they could emulate the system. That probably explains the chips.
Your PS (Paired Single) experience is mostly what I would expect from a newbie assembly programmer. Sorry. Yes, it's very hard to code PSes but once you get the hang of it, it's very efficient.
As far as your memory experience, I would expect the WiiU to use the equivalent from the Wii, meaning they have a very fast internal memory, and a cacheless external memory. It's powerful if you understand how to work its magic, and you need to know how to use caches or other accumulators to transfer data.
Not saying it isn't a pain. It is. Especially if you want to code as a general purpose guy (big company), with compatibility on multiple platforms. Most multiplatform have one kind of memory, so it expects fast and efficient RAM for its whole game. However, if you code solely for the WiiU, and have a background in Wii or in GameCube, you'll feel right at home I'm sure. Read your comments, and it all rang bells.
LordLimecat: :)
It would make sense if the WiiU uses the same system than the Wii. Wii uses 2 kind of RAM, first one is very quick for random access, but you have very little of it. Second one is very quick for sequential write access, but horribly slow for random read access. Depending on tests, you can get magnitude of slowness in that kind of RAM on Wii. Now, I don't have experience in WiiU (and even if I did, I would keep this confidential, to be honest), but I do feel in a familiar place.
-full disclosure- Work for EA, all info here was double-checked for availability in the likes of Wikipedia and Google. Opinions are mine.
>Work for EA
I'm so sorry.