SWDEV-553920 - Disable and fix failing tests (#1133)

Этот коммит содержится в:
vstojilj
2025-10-13 16:38:27 +02:00
коммит произвёл GitHub
родитель bfedf63575
Коммит f964f45902
2 изменённых файлов: 2 добавлений и 2 удалений
+2
Просмотреть файл
@@ -603,6 +603,8 @@
"Unit_hipGraphNodeSetEnabled_Functional_MemSet",
"Unit_hipGraph_PerfCheck_hipGraphExecChildGraphNodeSetParams",
"Unit_TexObjectCreate_TypePitch2D_IncompleteInit",
"=== SWDEV-553920 disabled until multi device graph issues are resolved ===",
"Unit_hipGraphUpload_Functional_multidevice_test",
#endif
#if defined gfx90a || defined gfx942 || defined gfx950
"=== SWDEV-443630 : Below test failed in stress test on 19/01/24 ===",
-2
Просмотреть файл
@@ -202,11 +202,9 @@ TEST_CASE("Unit_hipMemcpyPeerAsync_Positive_ZeroSize") {
HIP_CHECK(hipGetLastError());
constexpr int expected_value = 20;
HIP_CHECK(hipSetDevice(dst_device));
VectorSet<<<block_count, thread_count, 0, stream>>>(dst_alloc.ptr(), expected_value,
element_count);
HIP_CHECK(hipGetLastError());
HIP_CHECK(hipSetDevice(src_device));
constexpr int set_value_h = 21;
std::fill_n(result.host_ptr(), element_count, set_value_h);