/** Code for doing timing * @author gtowell * Created: Oct 1, 2020 */ public class Timer { private static final double NANOS_SEC = 1000000000.0; // nanosec per sec public static void main(String[] args) { int len = Integer.parseInt(args[0]); long[] data = new long[len]; for (int i=0; i