Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.

Set the row major store on B test to xfail on the GPU #1392

Merged
merged 2 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions SYCL/Matrix/XMX8/element_wise_all_ops_int8_packed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
// RUN: %CPU_RUN_PLACEHOLDER %t.out
// RUN: %GPU_RUN_PLACEHOLDER %t.out

// This test store the matrix B that is VNNIed (packed) in a row major fashion.
// This is expected to fail on the GPU because the implementation does not
// support automatic transformation YET, in this case: VNNI to row major in the
// store.

// XFAIL: gpu

#include <iostream>
#include <random>
#include <sycl/sycl.hpp>
Expand Down
6 changes: 6 additions & 0 deletions SYCL/Matrix/element_wise_all_ops_int8_packed.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@
// RUN: %CPU_RUN_PLACEHOLDER %t.out
// RUN: %GPU_RUN_PLACEHOLDER %t.out

// This test store the matrix B that is VNNIed (packed) in a row major fashion.
// This is expected to fail on the GPU because the implementation does not
// support automatic transformation YET, in this case: VNNI to row major in the
// store.
// XFAIL: gpu

#include <iostream>
#include <random>
#include <sycl/sycl.hpp>
Expand Down