From fba218f264bf4c475ee58091ba12849914d168f7 Mon Sep 17 00:00:00 2001 From: Dounia Khaldi Date: Mon, 29 Jul 2024 08:34:33 -0700 Subject: [PATCH 1/2] [SYCL][JM tests] Remove xfail from JM prefetch test --- sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp b/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp index 7abea83c6d28..df5c4b27a122 100644 --- a/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp +++ b/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp @@ -9,8 +9,6 @@ // RUN: %{build} -o %t.out // RUN: %{run} %t.out -// XFAIL: gpu - #include "common.hpp" constexpr size_t TN = 16; From f581ff1f23f4fb7519f59221ed01fe09776efe1f Mon Sep 17 00:00:00 2001 From: Dounia Date: Tue, 30 Jul 2024 06:55:12 -0700 Subject: [PATCH 2/2] return 0 since xfail is removed --- sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp b/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp index 9d9c99bf4ae1..1e665f618860 100644 --- a/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp +++ b/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp @@ -106,8 +106,7 @@ int main() { } if (!support_p) { std::cout << "Prefetch not supported on this device" << std::endl; - // Once the test is not marked as XFAIL, this should change to return 0; - return 1; + return 0; } static constexpr size_t M = TM * 2; static constexpr size_t N = TN * 2;