File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -36,9 +36,10 @@ The name "Byfl" comes from "bytes/flops". The very first version of the code co
3636Installation
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
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ dnl ### By Scott Pakin <pakin@lanl.gov> ###
44dnl #######################################
55
66dnl Initialize Autoconf and friends.
7- AC_INIT ( [ byfl] , [ 1.5 ] , [ pakin@lanl.gov] )
7+ AC_INIT ( [ byfl] , [ 1.6 ] , [ pakin@lanl.gov] )
88AC_CONFIG_SRCDIR ( [ lib/byfl/byfl.h] )
99AC_CONFIG_HEADERS ( [ config.h] )
1010AM_INIT_AUTOMAKE ( [ foreign] )
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments