From db221b022abb18139f85142102005104afb2e692 Mon Sep 17 00:00:00 2001 From: Brandon Potter Date: Fri, 27 Sep 2024 11:17:53 -0500 Subject: [PATCH] Change notifier max thread block value to account for MI300 CPX --- tests/unit_tests/notifier_gtest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/unit_tests/notifier_gtest.cpp b/tests/unit_tests/notifier_gtest.cpp index e6275b10a1..d3b699e3d9 100644 --- a/tests/unit_tests/notifier_gtest.cpp +++ b/tests/unit_tests/notifier_gtest.cpp @@ -116,10 +116,10 @@ TEST_F(NotifierAgentTestFixture, run_all_threads_once_1024_32) { run_all_threads_once(1024, 32); } -TEST_F(NotifierAgentTestFixture, run_all_threads_once_1_64) { - run_all_threads_once(1, 64); +TEST_F(NotifierAgentTestFixture, run_all_threads_once_1_38) { + run_all_threads_once(1, 38); // MI300 CPX } -TEST_F(NotifierAgentTestFixture, run_all_threads_once_1024_64) { - run_all_threads_once(1024, 64); +TEST_F(NotifierAgentTestFixture, run_all_threads_once_1024_38) { + run_all_threads_once(1024, 38); // MI300 CPX }