Sha256: 5504d1bdd5707ba9ad9e647070ce59f2e7798272befc6751dc6c790ed1863005
Contents?: true
Size: 508 Bytes
Versions: 6
Compression:
Stored size: 508 Bytes
Contents
package org.sunflow.system; /** * This interface is used to represent a piece of code which is to be * benchmarked by repeatedly running and timing the kernel code. The begin/end * routines are called per-iteration to do any local initialization which is not * meant to be taken into acount in the timing (like preparing or destroying * data structures). */ public interface BenchmarkTest { public void kernelBegin(); public void kernelMain(); public void kernelEnd(); }
Version data entries
6 entries across 6 versions & 1 rubygems