Skip to content

Commit

Permalink
fix unit for latency stat
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lavin committed Jan 14, 2025
1 parent b90e8c4 commit c99c6bf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sst/elements/ariel/arielcpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ class ArielCPU : public SST::Component {
SST_ELI_DOCUMENT_STATISTICS(
{ "read_requests", "Statistic counts number of read requests", "requests", 1}, // Name, Desc, Enable Level
{ "write_requests", "Statistic counts number of write requests", "requests", 1},
{ "read_latency", "Statistic counts latency of read requests", "requests", 1}, // Name, Desc, Enable Level
{ "write_latency", "Statistic counts latency of write requests", "requests", 1},
{ "read_request_sizes", "Statistic for size of read requests", "bytes", 1}, // Name, Desc, Enable Level
{ "read_latency", "Statistic for latency of read requests", "cycles", 1},
{ "write_latency", "Statistic for latency of write requests", "cycles", 1},
{ "read_request_sizes", "Statistic for size of read requests", "bytes", 1},
{ "write_request_sizes", "Statistic for size of write requests", "bytes", 1},
{ "split_read_requests", "Statistic counts number of split read requests (requests which come from multiple lines)", "requests", 1},
{ "split_write_requests", "Statistic counts number of split write requests (requests which are split over multiple lines)", "requests", 1},
Expand Down

0 comments on commit c99c6bf

Please sign in to comment.