You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be really handy to use the same report definition file for multiple configurations that might or might not have the same stats. Today the report definition causes the framework to error:
Unable to parse expression: "cpu.icache.stats.il1_cache_misses" within context: top in report file "report.yaml" for the following reason:
SPARTA was unable to find a tree node that matched this name.
This works for architecture A which has the icache at the cpu level, but not architecture B which has it maybe inside fetch.
Suggested "fix":
name: "Summary ICache Report"
optional_content:
# Works for arch A
cpu.icache.stats.il1_cache_misses: ICache Misses
optional_content:
# Works for arch B
cpu.fetch.icache.stats.il1_cache_misses: ICache Misses
The text was updated successfully, but these errors were encountered:
The report mechanism looks for the keyword <arch name>-arch-content where <arch name> is the value supplied on the command line via --arch <arch name> flag
Would be really handy to use the same report definition file for multiple configurations that might or might not have the same stats. Today the report definition causes the framework to error:
Here's what the report.yaml looks like:
This works for architecture A which has the icache at the
cpu
level, but not architecture B which has it maybe insidefetch
.Suggested "fix":
The text was updated successfully, but these errors were encountered: