diff --git a/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp b/sycl/test-e2e/Matrix/joint_matrix_prefetch.cpp index 7abea83c6d287..df5c4b27a122b 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; diff --git a/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp b/sycl/test-e2e/Matrix/joint_matrix_prefetch_impl.hpp index 9d9c99bf4ae1a..1e665f618860f 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;