Files @ d99cbf562ef2
Branch filter:

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

Hannes Muehleisen
import acs3yr
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]]
		log.result("identity", sys, conf, s, r, timing)
	}
}