From 236c3edfe0e528ba85ac0d9e4eac1ab1248888d1 Mon Sep 17 00:00:00 2001 From: "Brian \"DragonLord\" Wong" Date: Sun, 28 Dec 2014 16:43:55 -0500 Subject: [PATCH] Prepare for 0.3.0 release --- CHANGES.md | 9 ++++++++- hi64.c | 4 ++-- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 8561b58..70bb059 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,4 +13,11 @@ - Added support for setting key compile-time parameters using command-line arguments to the compiler or Make. Parameters which may be set this way include `ADVANCE`, `NCHUNK`, `NTRIAL`, `PATIENCE`, `RUNTM`, `STOPRT`, and - `STOPTM`. \ No newline at end of file + `STOPTM`. + +## 0.3.0 (December 28, 2014) + + - Added the ability to limit memory use. The memory limit is specified at + runtime in megabytes as the first parameter to the benchmark executable. The + output directory name is now specified by the second parameter. + - Fixed a typo in the out-of-memory error message. \ No newline at end of file diff --git a/hi64.c b/hi64.c index 7ab04c8..7aebcb1 100644 --- a/hi64.c +++ b/hi64.c @@ -77,8 +77,8 @@ int main(int argc, char *argv[]) char* suffix; /* Suffix for data.suffix directory */ - printf("\nHI64 System Benchmark, Version 0.2.0"); - printf(" (December 27, 2014)\n"); + printf("\nHI64 System Benchmark, Version 0.3.0"); + printf(" (December 28, 2014)\n"); printf("Derived from HINT originally developed by"); printf(" John L. Gustafson & Quinn O. Snell,\n"); printf("Scalable Computing Laboratory, Iowa State University\n\n");