Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The Android emulator is a bit sluggish. For some devices, like the Motorola Droid and the Nexus One, the app runs faster in the actual device than the emulator. This is a problem when testing games and visual effects.

How do you make the emulator run as fast as possible? I've been toying with its parameters but haven't found a configuration that shows a noticeable improvement yet.

share|improve this question
all my apps run faster on the device – user132014 Apr 18 '10 at 15:07
11  
It's funny because the iPhone simulator is exactly the opposite. The apps run slower on the device. In most cases I prefer a slower emulator, because it stimulates you to improve your app, but sometimes you just want to see it work like it does in a real device. – hpique Apr 18 '10 at 15:14
It's possible to make it run MUCH faster aka normally by using VirtualBox - see stackoverflow.com/a/6058689/40961 – David Freitas Feb 4 '12 at 8:43
Possible duplicate of Slow Android emulator. – blahdiblah Mar 13 '12 at 3:50

13 Answers

up vote 41 down vote accepted

How do you make the emulator run as fast as possible?

Buy a faster computer.

The emulator is running actual ARM opcodes. It uses qemu, which is a virtualization system akin to a VirtualBox or VMWare, to accomplish this. That approach maximizes the fidelity between the emulator and real-world devices. Its cost is the ARM->Intel opcode conversion. The only way to significantly speed that up is to speed up the CPU that runs the emulator.

I have not done an exhaustive analysis, but I do not get the sense that qemu and the emulator use multiple cores. Hence, "a faster computer" is governed more by the speed of a single core than how many cores it has.

To the extent possible, I would develop "games and visual effects" on actual Android hardware, using the emulator for testing configurations that you do not own (e.g., QVGA). For example, I've done a reasonable amount of work on video playback apps, and I only bother developing those on hardware, because video playback (and presumably some games) requires graphics acceleration to work well, and qemu does not have a graphics accelerator AFAICT.

share|improve this answer
8  
Thanks CommonsWare. Very interesting answer. But isn't there anything you can do to improve the performance? Things like disabling all debug messages and such. Maybe there's an optimal configuration for performance. – hpique Apr 18 '10 at 22:22
4  
This is pretty ridiculous. Apple's iPhone/iPad simulator is generations ahead of this. – Brian Liang Mar 15 '11 at 14:49
5  
Apple's simulator is running i386 directly on the OS, Android's is running inside an emulator as Commonsware says. – Heath Borders Mar 26 '11 at 22:01
4  
So, this is a fine answer and the slowness is somewhat inevitable. However, the WebOS emulator is built in the same way, except that it uses an actual VirtualBox instance instead of qemu. And it's about fifty times faster. I know nothing about qemu but it seems to be the crappiest emulation layer known to man. Aaand my emulator has launched. Back to work! – Ben Gotow Sep 6 '11 at 2:19
10  
-1 i have a 2.7 i7 processor and it's still pretty slow, hard to believe this is the answer. – botbot May 24 '12 at 20:44
show 4 more comments

As CommonsWare has correctly pointed out, the emulator is slow because it emulates an ARM CPU, which requires translation to Intel opcodes. This virtualization chews up CPU.

To make the emulator faster, you have to give it more CPU. Start with a fast CPU or upgrade if you can.

Then, give the emulator more of the CPU you have:

  1. Disable Hyperthreading - Since the emulator doesn't appear to utilize more than one core, hyperthreading actually reduces the amount of overall CPU time the emulator will get. Disabling HT will slow down apps that take advantage of multiple CPUs. Hyperthreading must be disabled in your BIOS.
  2. Make the emulator run on a CPU other than CPU 0 - This has a much smaller impact than turning off HT, but it helps some. On Windows, you can specify which CPU a process will run on. Many apps will chew up CPU 0, and by default the emulator runs on CPU 0. I change the emulator to run on the last one. Note that on OS X you cannot set affinity (see: http://superuser.com/questions/149312/how-to-set-processor-affinity-on-a-mac).

I'm seeing somewhere around a 50% improvement with these two changes in place.

To set processor affinity on Windows 7:

  1. Open Task Manager
  2. Click View All Processes (to run as administrator, otherwise you can't set processor affinity)
  3. Right click on emulator.exe and choose Set Affinity...
  4. On the Set Affinity dialog, select just the last CPU

Note: When you change affinity in this way, it's only changed for the lifetime of the process. Next start, you have to do it again.

enter image description here

share|improve this answer
14  
The CPU percentage doubled when you disabled hyper-threading because you halved the amount of logical processors. – Timothy003 Jul 6 '11 at 8:02
It works like charm but.. Do you know how to do it on Ubuntu 11.10? – Emerald214 Nov 30 '11 at 7:51
1  
@Timothy003 yes absolutely correct. And doubled the CPU the emulator will use. – mcohen75 Mar 30 '12 at 17:27
3  
You only see a doubling in the number task manager shows; not in reality. If you're not running enough software to generate enough work to have the equivalent of at least 4 threads at 100% CPU the the few apps doing heavy CPU usage will still effectively get almost the entire core, not the half core your naive assumption of what task manager is displaying means. – Dan Neely Jul 27 '12 at 13:24
2  
To confirm what @Dan Neely says: I have a single core app, that just burns 100% cpu. When I have HT it shows about 25%, without it shows about 50%, but in fact in computes what it has to compute in the same time. So no difference (at least on Sandy Bridge). – bartosz.r Sep 13 '12 at 22:57
show 2 more comments

Official web page

~50% faster

Windows:

  • Install "Intel x86 Emulator Accelerator (HAXM)" => SDK-Manager/Extras
  • Install "Intel x86 Atom System Images" => SDK-Manager/Android 2.3.3
  • Go to the Android SDK root folder and navigate to extras\intel\Hardware_Accelerated_Execution_Manager. Execute file IntelHaxm.exe to install.
  • Create AVD with "Intel atom x86" CPU/ABI
  • Run emulator and check in console that HAXM running

enter image description here

P.S. during AVD creation add emulation memory: Hardware/New/Device ram size/set up value 512 or more

Linux:

  • Install KVM: open GOOGLE, write "kvm installation "
  • Create AVD with "Intel atom x86" CPU/ABI
  • Run from command line: emulator -avd avd_name -qemu -m 512 -enable-kvm
  • Or run from Eclipse: Run/Run Configurations/Tab "Target" - > check Intel x86 AVD and in "Additional Emulator Command Line Options" window add: -qemu -m 512 -enable-kvm (click Run)

enter image description here

P.S. For Fedora, for Ubuntu

share|improve this answer
This works in OSX as well. You need to install /extras/intel/Hardware_Accelerated_Execution_Manager/IntelHAXM.dmg after you download the package from the SDK manager. – Jarett May 8 at 15:57

I recently switched from a core 2 @ 2.5 with 3gb of ram to an i7 @ 1.73 with 8gb ram (both systems ran Ubuntu 10.10) and the emulator runs at least twice as fast now. Throwing more hardware at it certainly does help.

share|improve this answer

With ADT rev 17 the emulator supports running x86 system images in virtualization mode on Windows and Mac OS X. This has a noticeable impact on performance.

ADT rev 17 notes: http://android-developers.blogspot.jp/2012/03/updated-sdk-tools-and-adt-revision-17.html

Configuring Virtual Machine Acceleration: http://developer.android.com/guide/developing/devices/emulator.html#accel-vm

share|improve this answer

Enable GPU Hardware Acceleration (in addition to Intel's HAXM), if you are using API 15 v3 or newer and SDK Tools v17+. Graphics acceleration for the emulator takes advantage of your development computer's graphics hardware, specifically its graphics processing unit (GPU), to make screen drawing faster. This gives a noticeable boost in speed.

To enable graphics acceleration enabled by default on your emulator: when creating the AVD, in the Hardware section, click New, select GPU emulation and set the value to Yes.

To enable acceleration only at runtime: use the -gpu flag while starting the emulator like this:

emulator -avd <avd_name> -gpu on

Source: Google's Using the Emulator tutorial.

share|improve this answer

I think it is because clr virtual machine uses cpu directly without code opcode translation. It may be optimization for clr application or may be windows mobile/window phone 7 started on INTEL proccessor. Android platform based on linux and theoretically you can start android on virtual machine in i686 environment. In this case virtual machines such as vmware could execute some opcodes direcly. But this option will be allowed only if you write on the Java. Because the Java interpret their byte-code or precompile it before execution. see: http://www.taranfx.com/how-to-run-google-android-in-virtualbox-vmware-on-netbooks

share|improve this answer

I noticed that the emulator defaults to only Core 0, where most Windows applications will default to "any" core. Also, if you put it on another core (like the last core), it may make the emulator go crazy. If you can, you can try putting your heavy-CPU usage applications on the other CPU cores for a boost in speed.

Hardware-wise, get the fastest CPU you can get that works for single-core applications. More than 2 cores might not experience a huge difference in terms of emulator performance.

Eclipse + the Android emulator together eat up a ton of RAM. I would recommend 3 gigs of RAM at least because I used a system with 2 gigs of RAM, and it slowed down because the system ran out of RAM and started to use the page file.

I feel that the best CPUs for it will probably have a high clock (only use clock as a measure for CPUs in the same series btw), handle non-SIMD operations well, and have a turbo boost mechanism. There aren't many Java-based benchmarks, but overall look for application benchmarks like compression and office. Don't look at gaming or media since those are affected greatly by SIMD. If you find a Java one, even better.

share|improve this answer

On this year google I/O (2011), Google demonstrated a faster emulator. The problem is not so much on the byte code between ARM and x86 but the software rendering performed by QEMU. They bypass the rendering of QEMU and send the rendering directly to an X server I believe. They showed a car game with really good performace and fps.

I wonder when that will be available for developers...

share|improve this answer

Just wanted to say that after I installed the Intel HAXM accelerator and use the Intel Atom image the emulator seems to run 50 times faster. The difference is amazing, check it out!

http://www.developer.com/ws/android/development-tools/haxm-speeds-up-the-android-emulator.html

share|improve this answer

Oh the asylum...the one run by the insane...woe is me...

There's a fairly comprehensive answer on my blog at http://tenacious33.wordpress.com/2012/04/05/improving-android-emulator-performance/

I'll address the r17 "accelerated mode" in my blog post in a week or two. The list of caveats associated with it doesn't inspire confidence or pride.

share|improve this answer

I've been using the Intel(86) CPU/ABI. I created another emulator using the ARM(armeabi-v7a) and i found quite an improvement with the speed. I'm using platform 4.1.2 API level 16

share|improve this answer

An alternative to the emulator is the AndroVM virtual machine, which runs far faster than the emulator and supports OpenGL acceleration:

http://androvm.org/

Anecdotally, I feel that it runs faster than actual Android devices.

share|improve this answer

protected by Community Aug 18 '11 at 9:23

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.