From c99c6bfe3816b07aa0a8d131a99ed2e0594250f1 Mon Sep 17 00:00:00 2001 From: Patrick Lavin Date: Tue, 14 Jan 2025 09:45:20 -0700 Subject: [PATCH] fix unit for latency stat --- src/sst/elements/ariel/arielcpu.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sst/elements/ariel/arielcpu.h b/src/sst/elements/ariel/arielcpu.h index 8389d14481..344cadea13 100644 --- a/src/sst/elements/ariel/arielcpu.h +++ b/src/sst/elements/ariel/arielcpu.h @@ -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},