top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Android Benchmarking tools

0 votes
237 views

I've been surveying Android benchmarking tools/apps/etc. and I was wondering if anyone here had any additions or comments to/on the following list:

0xbench
AnTuTu
Passmark
Vellamo
Geekbench2
SunSpider
GLBenchmakr
Quadrant Standard Edition
Linpack
Neocore
3DMark
Epic Citadel
Androbench
CF-bench
SD Tools
RL Benchmark: SQL
Benchmark & Tunning
A1 SD Bench
Quick Benchmark Lite
3DRating benchmark
Smartbench 2011
posted Jul 31, 2013 by Jagan Mishra

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button
Is 3DMark available for Android ? Could you please share some links from where I can download it ?
[I was searching for this for a long time; finally was told that it is available only for windows]

2 Answers

+1 vote
 
Best answer

Quadrant Standard Edition is the best one I have used.We have tried to develop one similar to that, and used the ACHARTENGINE library for displaying such graphs as shown by the Quadrant.The main design of the app is the core C /Assembly routines being packed as a shared library and being called by the JNI to transmit the data to the upper layers.The major Bench-marking we did were :

(1) I/O read write latencies
(2) ALU - Calculating complex mathematical calculation
(3) File System Read Write
(4) Image Rendering Latency to test the Hardware Graphic Engine.

But I dont know to how far this approach is justified to measure the bench-marking of any platform running Android.

answer Aug 2, 2013 by Amit Parthsarthi
0 votes

I would bin the benchmarks into several different categories, for example, CPU, Memory, I/O (storage), GPU, OS and overall system. Some benchmarks are more OS oriented, such as Dalvik, SQLite, and Javascript.

answer Aug 2, 2013 by Mandeep Sehgal
Similar Questions
0 votes

We have tried to do build with the normal user, but it failed after some time without giving any permission issue. I have made compilation directory permission as 777 and the same code has been compiled successfully with sudo or root user.

0 votes

Can anyone suggest the library for Push Notification?

0 votes

Update is installed but status is in pending on App Center. Since sync is alreday called , it won't rollback automatically and also not updating to newer version. The app crashes on startup everytime.

So how to rollback or update to new code push bundle version in this case ?

Here is the sample code:

componentDidMount() { 
codePush.sync(codePushOptions,(status) => {  
switch (status) {    
case codePush.SyncStatus.CHECKING_FOR_UPDATE:
//console.log("Checking for updates.");
break;  
case codePush.SyncStatus.DOWNLOADING_PACKAGE:
//console.log("Downloading package.");
break;   
case codePush.SyncStatus.INSTALLING_UPDATE:
//console.log("Installing update.");
break;  
case codePush.SyncStatus.UP_TO_DATE:
break;  
case codePush.SyncStatus.UPDATE_INSTALLED:         
break;
}
})
throw new Error();
}

Note : I have thrown error to check working of auto rollback.

...