From 386b7d3366f1359a265da207a9cafa3edf553b64 Mon Sep 17 00:00:00 2001 From: Joshua Bakita Date: Mon, 7 Oct 2019 19:13:39 -0400 Subject: Reorganize and commit all the modified TACLeBench code and run scripts --- baseline/source/ammunition/timeScript | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 baseline/source/ammunition/timeScript (limited to 'baseline/source/ammunition/timeScript') diff --git a/baseline/source/ammunition/timeScript b/baseline/source/ammunition/timeScript new file mode 100644 index 0000000..33ba812 --- /dev/null +++ b/baseline/source/ammunition/timeScript @@ -0,0 +1,8 @@ +#!/bin/bash +startTime=$(date +%N) +echo start time $startTime +$1 +stopTime=$(date +%N) +echo stop time $stopTime +totalTime=`expr $stopTime - $startTime` +echo total time $totalTime -- cgit v1.2.2