Only 512 Megs folks--that might be enough in the year 2000, but not today. So don't expect them to add multitasking to this generation.
512 MB total, though only 256MB accessible.
Have been reading a few threads about the debated iPad RAM and came across this on iFixit when i googled it.
"Decoding the part number shows there is 2Gb of memory inside. This translates into ~128MB of memory per die, for 256 MB total. (NOT 512MB, as we previously reported.)"
http://www.ifixit.com/Teardown/iPad-Teardown/2183/2
![]()
Yeah looks like they were wrong, and changed it. I don't know what Apple is thinking only putting 256MB of RAM in that's shared into a device that has a 1024x768 screen.![]()
256MB according to Appleinsider.
http://www.appleinsider.com/articles/10/04/03/ifixits_ipad_teardown_finds_huge_dual_battery_512mb_of_ram_in_a4.html
Why do you think Apple has such high profits? Because of good products? You wish.
They have no idea how to engineer computers and mobile devices!
I'm a bit confused, does the iPad have 256MB RAM in total, or is it that only 256MB are accessible by apps, while the other 256MB is dedicated to the OS or video memory?
For those of you that care, I can confirm that, at least according to BSD, the iPad has 256 MB of RAM.
If anyone wants to verify this, here's the objective-c function to try this with the iPhone SDK:
Code://Returns bytes of RAM int getRamSize() { int count ; size_t size=sizeof(count) ; if (sysctlbyname("hw.memsize",&count,&size,NULL,0)) return 1; return count; }
I'm a bit surprised that this amount is so small, but so far at least, it doesn't seem to affect performance much (the iPad is still very fast). This is the same amount as the third gen iPod touch and the iPhone 3GS. Maybe we'll see more of an impact if and when there's official iPad multitasking.
Synthetic Benchmarks:
Also, using a benchmark I wrote called Gauge Mathematical Tool, the iPad scores 380 points or so, compared to a score of 190 on my iPhone 3GS. It should be about twice as fast for apps that are intensive for the CPU.
Meanwhile, it takes about 4 seconds to find 50,000 digits of Pi on my iPad and 8.24 on my iPod touch 3G. This also shows a 2x speed improvement.
This makes sense, I think, as the iPad's A4 CPU frequency is almost twice as high as that of the iPod touch 3G or iPhone 3GS, and likely also benefits from tweaks to the architecture.
You can read more about how Gauge Mathematical Tool works internally at my website, thomashuntington.com, but it's a pretty good general use benchmark that is CPU, RAM, and Graphics intensive, available for all iPhone OS Devices in the App Store here.
Thomas Huntington
iPhone and iPad Developer
I'm a bit confused, does the iPad have 256MB RAM in total, or is it that only 256MB are accessible by apps, while the other 256MB is dedicated to the OS or video memory?
The iPad definitely has 256 MB of RAM total. Not all of that is accessible to devs, though. iFixit has now stated that they've only found 256 MB in their tear down, and my own testing corroborates this.
Thank you for your detailed analysis, it really helped. However I'm still confused about the video memory. Is the video memory going to be taken out of this 256MB of RAM, or does it have its own memory?