Re: [android-developers] Android Benchmark

2011-10-10 Thread metin ögtem
Android market contain benchmark applicatios ...you can benchmark your phone.. 2011/10/9, ehsan azimzadeh ehsan.azimza...@gmail.com: I want to determine which bytecodes are usually execute. In other words I'm doing a bytecode profiling. This is not only in a specific domain. Is there any

Re: [android-developers] Android Benchmark

2011-10-10 Thread Kristopher Micinski
There are android profiling tools, as well, if you would like to do that. A benchmark is more application specific, you're just not using the concept correctly. It makes sense to benchmark some type of application, but applications in general, perhaps you are asking about application profiling?

Re: [android-developers] Android Benchmark

2011-10-09 Thread ehsan azimzadeh
I want to determine which bytecodes are usually execute. In other words I'm doing a bytecode profiling. This is not only in a specific domain. Is there any universal and valid benchmark? Ehsan On 8 October 2011 15:09, Damien Cooke cooke.dam...@gmail.com wrote: Not sure what you are trying to

[android-developers] Android Benchmark

2011-10-08 Thread ehsan azimzadeh
Hi Is there any android benchmark? I want JAVA source not .apk or any other formats. Thanks Ehsan -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

Re: [android-developers] Android Benchmark

2011-10-08 Thread Damien Cooke
Not sure what you are trying to benchmark, but if it is network based, you should look at FABAN written by some bright people at Sun a few years ago. Damien On 09/10/2011, at 5:10 AM, ehsan azimzadeh wrote: Hi Is there any android benchmark? I want JAVA source not .apk or any other

Re: [android-developers] Android benchmark with rectangles

2010-05-28 Thread TreKing
On Thu, May 27, 2010 at 3:29 PM, kish kishore.sri...@gmail.com wrote: But the only problem is that I see all the rectangles after it ran the program completely. You have one giant draw call - what do you expect? But I would like to have rectangles drawn, when I call

[android-developers] Android benchmark with rectangles

2010-05-27 Thread kish
Hi I am trying to find the number of rectangles per sec in three different size rectangles. I did find it though. But the only problem is that I see all the rectangles after it ran the program completely. But I would like to have rectangles drawn, when I call canvas.drawRect(rec1,paint); function.