Files @ 8bf3b2c41088
Branch filter:

Location: DA/raaql-paper-experiments/identity.R

Hannes Muehleisen
updates with fixed renjin version
source("harness.R")

for (s in 5:sm) {
	a <- runif(10^s, 1, 100)
	for (r in 1:5) {
		timing <- system.time({
			b <- a ^ 1 * 1 + 0
			print(mean(b))
		})[[3]]
		clearResultRecycler()
		log.result("identity", sys, conf, s, r, timing)
	}
}