From 97288fedc91c26595fd8dba0238ba40e796a7aff Mon Sep 17 00:00:00 2001 From: Giovanni LB Date: Thu, 15 Feb 2024 14:27:48 -0300 Subject: [PATCH] Disabling ATT Tests Change-Id: I0e03337de967aedaa15600c8b848ea618376d8a2 --- src/tools/tool.cpp | 2 +- tests-v2/featuretests/profiler/profiler_gtest.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tools/tool.cpp b/src/tools/tool.cpp index a6392a27ba..24361b154b 100644 --- a/src/tools/tool.cpp +++ b/src/tools/tool.cpp @@ -313,7 +313,7 @@ att_parsed_input_t GetATTParams() { std::unordered_map default_params = { {"SE_MASK", 0x111111}, // One every 4 SEs, by default {"SIMD_SELECT", 0x3}, // 0x3 works for both gfx9 and Navi - {"BUFFER_SIZE", 0x40000000}, // 2^30 == 1GB + {"BUFFER_SIZE", 0x10000000}, // 2^28 == 256MB {"ISA_CAPTURE_MODE", static_cast(ROCPROFILER_CAPTURE_SYMBOLS_ONLY)}}; std::ifstream trace_file(path); diff --git a/tests-v2/featuretests/profiler/profiler_gtest.cpp b/tests-v2/featuretests/profiler/profiler_gtest.cpp index 9808b3875f..dc2a9d543c 100644 --- a/tests-v2/featuretests/profiler/profiler_gtest.cpp +++ b/tests-v2/featuretests/profiler/profiler_gtest.cpp @@ -740,7 +740,7 @@ class ATTCollection : public ::testing::Test { }; bool ATTCollection::bCollected = false; -TEST_F(ATTCollection, WhenRunningATTItCollectsTraceDataWithOldAPI) { +TEST_F(ATTCollection, DISABLED_WhenRunningATTItCollectsTraceDataWithOldAPI) { int result = ROCPROFILER_STATUS_ERROR; // inititalize ROCProfiler @@ -806,7 +806,7 @@ TEST_F(ATTCollection, WhenRunningATTItCollectsTraceDataWithOldAPI) { } // New API -TEST_F(ATTCollection, WhenRunningATTItCollectsTraceDataWithNewAPI) { +TEST_F(ATTCollection, DISABLED_WhenRunningATTItCollectsTraceDataWithNewAPI) { int result = ROCPROFILER_STATUS_ERROR; // inititalize ROCProfiler result = rocprofiler_initialize();