Skip to content

Commit 712fb9d

Browse files
committed
Merge branch 'llvm-6.0' into llvm-3.9
2 parents ef6da3a + 63d7598 commit 712fb9d

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,10 @@ The name "Byfl" comes from "bytes/flops". The very first version of the code co
3636
Installation
3737
------------
3838

39-
There are four "release" branches of Byfl on GitHub:
39+
There are five "release" branches of Byfl on GitHub:
4040

4141
* [`master`](https://github.com/lanl/Byfl), corresponding to LLVM trunk (usually not up to date; best to avoid)
42+
* [`llvm-6.0`](https://github.com/lanl/Byfl/tree/llvm-6.0), corresponding to LLVM 6.0._x_ releases
4243
* [`llvm-5.0`](https://github.com/lanl/Byfl/tree/llvm-5.0), corresponding to LLVM 5.0._x_ releases
4344
* [`llvm-4.0`](https://github.com/lanl/Byfl/tree/llvm-4.0), corresponding to LLVM 4.0._x_ releases
4445
* [`llvm-3.9`](https://github.com/lanl/Byfl/tree/llvm-3.9), corresponding to LLVM 3.9._x_ releases

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dnl ### By Scott Pakin <pakin@lanl.gov> ###
44
dnl #######################################
55

66
dnl Initialize Autoconf and friends.
7-
AC_INIT([byfl], [1.5], [pakin@lanl.gov])
7+
AC_INIT([byfl], [1.6], [pakin@lanl.gov])
88
AC_CONFIG_SRCDIR([lib/byfl/byfl.h])
99
AC_CONFIG_HEADERS([config.h])
1010
AM_INIT_AUTOMAKE([foreign])

lib/byfl/byfl.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,8 +1036,8 @@ static class RunAtEndOfProgram {
10361036
// Output every mth quantile in binary format.
10371037
const double pct_change_bin = 0.001; // Minimum percentage-point change to output in binary format
10381038
*bfbin << uint8_t(BINOUT_TABLE_BASIC) << "Memory locality";
1039-
*bfbin << uint8_t(BINOUT_COL_UINT64) << "Cache size"
1040-
<< uint8_t(BINOUT_COL_UINT64) << "Upper-bound of hit count"
1039+
*bfbin << uint8_t(BINOUT_COL_UINT64) << "Capacity in bytes"
1040+
<< uint8_t(BINOUT_COL_UINT64) << "Maximum possible hit count"
10411041
<< uint8_t(BINOUT_COL_NONE);
10421042
running_total_bytes = 0;
10431043
running_total_accesses = 0;

0 commit comments

Comments
 (0)