summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndras HORVATH <andras.horvath@gmail.com>2014-02-17 22:14:12 +0100
committerAndras HORVATH <andras.horvath@gmail.com>2014-02-17 22:14:12 +0100
commit4b98b5581cecd79446f65748fb7a8ed686f47c9f (patch)
treed95d34cbaf61cd441cce1e40d497411b61ad2f2f
parent6346daa765f85d47caa39685fb452701d82446d5 (diff)
Add version number. v1.4
-rw-r--r--mbw.c4
-rw-r--r--mbw.spec5
2 files changed, 8 insertions, 1 deletions
diff --git a/mbw.c b/mbw.c
index 06a9d09..56be86f 100644
--- a/mbw.c
+++ b/mbw.c
@@ -28,6 +28,9 @@
#define TEST_DUMB 1
#define TEST_MCBLOCK 2
+/* version number */
+#define VERSION "1.4"
+
/*
* MBW memory bandwidth benchmark
*
@@ -51,6 +54,7 @@
void usage()
{
+ printf("mbw memory benchmark v%s, https://github.com/raas/mbw\n", VERSION);
printf("Usage: mbw [options] array_size_in_MiB\n");
printf("Options:\n");
printf(" -n: number of runs per test\n");
diff --git a/mbw.spec b/mbw.spec
index 8481f97..a98fbc5 100644
--- a/mbw.spec
+++ b/mbw.spec
@@ -1,6 +1,6 @@
Summary: Memory bandwidth benchmark
Name: mbw
-Version: 1.3
+Version: 1.4
Release: 1
License: LGPL
Buildroot: %{_tmppath}/%{name}-buildroot
@@ -33,6 +33,9 @@ rm -rf %{buildroot}
%{_mandir}/man1/mbw.1.gz
%changelog
+* Mon Jan 17 2014 Andras Horvath <andras.horvath@gmail.com> 1.4-1
+- Fix labeling of the displayed results
+
* Thu Oct 03 2013 James Slocum <j.m.slocum@gmail.com> 1.3-1
- Fix MCBLOCK test: copy from the full source buffer, not just its first $blocksize.
- Fix MCBLOCK test: fixed segfault caused by for() going out of bounds