Skip to content

Commit

Permalink
fix: use meaningful sampling rates (#108)
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Santosh Ranjan <[email protected]>
  • Loading branch information
joshuaranjan authored Nov 15, 2024
1 parent 7494ca0 commit 74842c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions conformance_tests/tools/metrics/src/test_metric.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2032,7 +2032,7 @@ TEST(
ZE_EVENT_SCOPE_FLAG_HOST);

uint32_t notifyEveryNReports = 3000;
uint32_t samplingPeriod = 1000000;
uint32_t samplingPeriod = 10000;
zet_metric_streamer_handle_t metricStreamerHandle =
lzt::metric_streamer_open_for_device(device, groupInfo.metricGroupHandle,
eventHandle, notifyEveryNReports,
Expand Down Expand Up @@ -2114,7 +2114,7 @@ TEST(
ZE_EVENT_SCOPE_FLAG_HOST);

uint32_t notifyEveryNReports = 3000;
uint32_t samplingPeriod = 1000000;
uint32_t samplingPeriod = 10000;
zet_metric_streamer_handle_t metricStreamerHandle =
lzt::metric_streamer_open_for_device(device, groupInfo.metricGroupHandle,
eventHandle, notifyEveryNReports,
Expand Down

0 comments on commit 74842c2

Please sign in to comment.