Skip to content

Commit

Permalink
Parser fixes (#504)
Browse files Browse the repository at this point in the history
* Rewrite Victim Cache Profiler Parser (#428)
* Fixed vcache profiler bugs with re-write
* fix tile parser to get correct min cycle no. for absolute total cycles calculation when using multiple tags (#480)
* Fix header_print_p (for bigblade)

Bugs:
* Order of operations: Python binds or higher than >
* Counting of repeated tags. Previously, only the last tag was counted
* Iteration-order aware tag window

New Features:
* Atomic Misses
* Response Stalls
* More documentation

* Remove deprecated code
* Small field name modifications
* Fixed issue with mismatched tags error
* Fixed issue where TG origin/dim were confused for Device origin/dim


Co-authored-by: Emily Furst <eafurst@cs.washington.edu>
  • Loading branch information
2 people authored and tommydcjung committed Jul 2, 2021
1 parent 221fa30 commit 1b8a5ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion testbenches/common/v/bsg_nonsynth_manycore_testbench.v
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ if (enable_cache_profiling_p) begin
bind bsg_cache vcache_profiler #(
.data_width_p(data_width_p)
,.addr_width_p(addr_width_p)
,.header_print_p("py[0].px[0].pod.north_vc_x[0].north_vc_row.vc_x[0].vc")
,.header_print_p({`BSG_STRINGIFY(`HOST_MODULE_PATH),".testbench.DUT.py[0].px[0].pod.north_vc_x[0].north_vc_row.vc_y[0].vc_x[0].vc.cache.vcache_prof"})
,.ways_p(ways_p)
) vcache_prof (
// everything else
Expand Down

0 comments on commit 1b8a5ac

Please sign in to comment.