Skip to content

Commit

Permalink
Prepare for 0.2.0 release, apply finishing touches
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian "DragonLord" Wong authored and Brian "DragonLord" Wong committed Dec 28, 2014
1 parent ef365df commit 6a8fc6f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,15 @@

## 0.1.0 (October 25, 2014)

First release under the HI64 name.
- First release under the HI64 name.

## 0.2.0 (December 27, 2014)

- Added Makefile for easier compilation.
- Set default PATIENCE to 10. This is because modern computer systems tend to
have frequent interrupts, so increasing this value increases benchmark
accuracy.
- 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`.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ to run per trial. Notable options include:
longer than the following trial, it is treated as having taken as long as the
following trial. Increasing the `PATIENCE` value may increase net QUIPS
especially on systems with frequent interrupts but may also cause the
benchmark to take longer to finish. The default is `7`.
benchmark to take longer to finish. The default is `10`.
- `RUNTM`: The minimum time to run each trial, in seconds. HI64 will use this
value to determine how many laps to run in earlier trials so that there are
enough laps to fill `RUNTM` seconds, but in any case no less than `NTRIAL`
Expand Down
4 changes: 2 additions & 2 deletions hi64.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ int main(int argc, char *argv[])

char* suffix; /* Suffix for data.suffix directory */

printf("\nHI64 System Benchmark, Version 0.1.0");
printf(" (October 25, 2014)\n");
printf("\nHI64 System Benchmark, Version 0.2.0");
printf(" (December 27, 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");
Expand Down

0 comments on commit 6a8fc6f

Please sign in to comment.