Caliper is Google's open-source framework for writing, running and viewing the results of Java microbenchmarks.

learn more… | top users | synonyms

1
vote
2answers
88 views

Google Caliper: Trouble getting started (Java Benchmarking)

I am trying to use Google Caliper to benchmark some simple code. I am using the examples from their websites. Here's what I've done so far: Downloaded the Caliper JAR and added it to my Netbeans ...
0
votes
0answers
22 views

How to control reps with normal mode in caliper

I am able to control reps when i run benchmark in debug mode. sh ~/projects/poc/caliper/scripts/caliper --debug-reps 1 com.parquet.benchmark.BenchmarkParquetDirectWrites However when i run in ...
1
vote
0answers
44 views

Unable to load caliper results online

I followed few suggestions available online but none has helped. Got caliper and built it from https://github.com/peterlynch/caliper export ...
0
votes
0answers
35 views

Unable to install Google Caliper

I installed google caliper by downloading its git code, did a mvn clean install of it. This produced caliper-1.0-beta-SNAPSHOT.jar. I included caliper as a maven dependency my project and decided to ...
2
votes
1answer
133 views

Caliper: micro- and macro benchmarks

For ELKI I need (and have) more flexible sorting implementations than what is provided with the standard Java JDK and the Collections API. (Sorting is not my ultimate goal. I use partial sorting for ...
0
votes
1answer
33 views

405 when posting Caliper results online

I checked out the latest version of caliper and ran a few benchmarks. The result are generated (as json) just fine, but upload to the microbenchmarks appengine website fails with: POST ...
0
votes
1answer
52 views

How to do tracing of caliper benchmarks execution ?

How can I see console output in "running" mode (in --debug I can see it). Does caliper creates execution log? How to access it?
0
votes
2answers
56 views

How to control the exact number of tests to run with caliper

I tried to understand, what is the proper way to control the number of runs: is it the trial or rep? It is confusing: I run the benchmark with --trial 1 and recieve the output: 0% Scenario{vm=java, ...
0
votes
1answer
47 views

Caliper benchmark online results are not generated

I followed the isnstructions in http://code.google.com/p/caliper/wiki/OnlineResults?show=content and have a key generated for me. I put this key into the file ~/.caliperrc in my Linux machine and ...
1
vote
1answer
181 views

guava-11.0.1.jar and Maven plugin for eclipse

I created maven project in Eclipse and added a few dependencies. Here is a full list of dependencies: <dependencies> <dependency> ...
0
votes
2answers
371 views

Using Google Caliper with Scala

I am trying to use Caliper with Scala(2.10) in Eclipse Juno(4.2). For the start I've set up a benchmark that simply iterates a foreachloop over an array. import com.google.caliper.Param import ...
0
votes
2answers
160 views

Is Caliper 1.0 still on track?

In various other caliper posts, it would seem that Caliper was approaching a 1.0 release sometime in October (i.e,. in August the answers were along the line "wait two months"), but there hasn't been ...
1
vote
1answer
53 views

Force fixed column order with caliper

I'm running a caliper benchmark with multiple time* methods and two parameters and at the end get a nice table like parameter1 parameter2 benchmark After a small change to a method body I get ...
0
votes
1answer
90 views

Get logarithmic benchmark runtime from Caliper

I've recently discovered the Caliper benchmark framework for Java which seems like a very useful tool for microbenchmarks. I'm using it to run microbenchmarks for my vector maths library (vectorz) ...
6
votes
1answer
309 views

Performance of Guava's ImmutableSet.contains

Guava's ImmutableSet seems to perform quite poorly in my benchmark concerning contains. For some sizes it gets even much slower than List: size benchmark ns linear runtime 100000 ...
0
votes
1answer
204 views

Caliper: Interpreting the benchmark results

Can anyone help me with this question. I write simple benchmark with single method public void timeIntArrayBlockingQueue(int reps) { for (int i = 0; i < reps; i++) { for (int j = 0; j < ...
1
vote
1answer
151 views

caliper micro-benchmarking for regex

I use Google caliper to benchmark two methods which check mdn number in a string. One method uses the user defined method whereas other uses the regular expression. I am really surprised to find that ...
0
votes
1answer
197 views

Caliper : JVM throws OutOfMemoryError Exception

I am using google caliper to run a very simple benchmark on a method. I am getting the following exception. Exception in thread "main" java.lang.OutOfMemoryError: Java heap space at ...
1
vote
2answers
637 views

google Caliper example test doesn't work?

I downloaded the latest google caliper source code and build it using maven. Now I am trying to run google caliper example test given here.. I am using the below command to execute the test. java ...
0
votes
1answer
66 views

Can caliper skip some Param combinations for some methods?

I'm testing 6 different implementations of a two methods, which would need time* 12 method. Using an interface and @Param with a Supplier I need only 2 methods, but there can be some associated ...
11
votes
2answers
373 views

How to measure file read speed without caching?

My java program spends most time by reading some files and I want to optimize it, e.g., by using concurrency, prefetching, memory mapped files, or whatever. Optimizing without benchmarking is a ...
0
votes
2answers
218 views

Caliper: why not use an annotation to define a benchmark?

Just found out about Caliper, and going through the documentation - it looks like a great tool (thanks Kevin and the gang at Google for opensourcing it). Question. Why isn't there an annotation-based ...
0
votes
1answer
116 views

Caliper @Param not working

I am trying to use the @Param annotation on a field with the command line args of the form: "-Dmyparamname=val1,val2,val3" and it is not working. I am using caliper-0.5-rc1.jar. My actual usage ...
1
vote
1answer
250 views

Defining a gradle task to run caliper microbenchmark

This is probably more a Gradle question than a Caliper question, but I am still rather new to Gradle. I am interested in providing a task in my build that can run some benchmarks using Caliper. I ...
2
votes
1answer
358 views

Junit setup with caliper

I am trying to wrap the caliper code in junit so the performance tests run as part of my unit tests. It seems to work - the caliper test actually runs, but it doesn't exit successfully. What's the ...
0
votes
2answers
186 views

Using Caliper to benchmark REST Services … or not?

I want to compare the response time between different services I made. I heard about Caliper so I decided to use it in a very simple way to make calls and measure them, with some functions like that: ...
0
votes
0answers
97 views

Caliper loses track of worker with “Error: Could not find or load main class”

I'm trying to run Caliper, but I got the dreaded benchmark death exception: java.lang.RuntimeException: Got no response! at com.google.caliper.runner.CaliperRun.measure(CaliperRun.java:241) at ...
2
votes
3answers
381 views

Automatic Runtime Performance Regression Test in Java

I'm looking for ways to detect changes in runtime performance of my code in an automatic way. This would act in a similar way that JUnit does, but instead of testing the code's functionality it would ...
2
votes
0answers
138 views

NonConstantMemoryUsage Exception

I was doing tests with MeasureMemory turned on and was getting "NonConstantMemoryUsage" exception. I did not modify reps as suggested by error message. What am I missing? [caliper] allocating ...
1
vote
2answers
455 views

Caliper: ConfigurationException if I run with measureMemory parameter

I am getting ConfigurationException(agent library failed) when I turn on measureMemory parameter in Tutorial.java from Caliper source ...
0
votes
0answers
245 views

How to use Caliper Benchmark to test my Service API

I am trying to use Caliper to benchmark my Service Classes, with Junit. I would need your advice on how can I accomplish this? I have a test class which tests all the usecases of my activation ...
4
votes
2answers
140 views

How can I name the runs sent online with Caliper?

I have a benchmark that requires multiple runs to compare the results, since it needs to be compiled with different compilers and compile parameters. When I execute it, the runs are sent online with ...
0
votes
1answer
403 views

Simple Benchmark Testing with Vogar

I want to write simple benchmark software for android. I researched and found Caliper + Vogar. But there is no example about them. Is there anyone use it ? I need simple code to call Caliper ...
0
votes
1answer
559 views

Exception while running benchmark

I was just trying to write the simple benchmark - public class IntegerCompareBenchmark extends SimpleBenchmark { private Integer left; private Integer right; @Override ...
3
votes
1answer
528 views

Caliper : how to post online results?

I am currently trying to get my way around Caliper with the few documentation available on the google code project's wiki. Having managed to run a few benchmarks, I would now like to post the results ...
3
votes
1answer
696 views

Caliper: How to run multiple benchmarks?

I have written a few benchmarks using Caliper. How can I run multiple benchmarks at once? I currently have many classes that extend SimpleBenchmark and have a few timeXXX methods each. Is it possible ...
2
votes
1answer
755 views

How to specify the command line when using Caliper?

I find Google's micro benchmark project Caliper very interesting but the documentation is still (except some examples) quite non-existent. I have two different cases where I need to influence the ...