From 76c41fd907a3f7e7d574da4c075f30656e3ede9f Mon Sep 17 00:00:00 2001 From: Cyril SIX Date: Fri, 17 May 2019 14:14:38 +0200 Subject: Measures to CSV done --- test/monniaux/ternary/make.proto | 1 + test/monniaux/ternary/ternary.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'test/monniaux/ternary') diff --git a/test/monniaux/ternary/make.proto b/test/monniaux/ternary/make.proto index c5219f1c..1568ed07 100644 --- a/test/monniaux/ternary/make.proto +++ b/test/monniaux/ternary/make.proto @@ -1 +1,2 @@ target: ternary +measures: [cycles] diff --git a/test/monniaux/ternary/ternary.c b/test/monniaux/ternary/ternary.c index ed7de156..e8813a5c 100644 --- a/test/monniaux/ternary/ternary.c +++ b/test/monniaux/ternary/ternary.c @@ -19,6 +19,6 @@ int main() { clock_start(); data result = silly_computation(); clock_stop(); - printf("result=%" PRIu32 "\ncycles=%" PRIu64 "\n", result, get_total_clock()); + printf("result=%" PRIu32 "\ncycles:%" PRIu64 "\n", result, get_total_clock()); return 0; } -- cgit