Skip to content

Commit 6f30655

Browse files
Set XFAIL to testcase and solve unused param's issue
1 parent 978ec48 commit 6f30655

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

sycl/include/sycl/ext/oneapi/matrix/matrix-jit.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ inline __SYCL_ALWAYS_INLINE void
198198
joint_matrix_fill(Group sg,
199199
joint_matrix<T, NumRows, NumCols, Layout, Group> &res,
200200
const T v) {
201+
(void)sg;
201202
#ifdef __SYCL_DEVICE_ONLY__
202203
res.spvm = __spirv_CompositeConstruct<T, NumRows, NumCols>(v);
203204
#else

sycl/test/matrix/matrix-int8-test.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
// RUN: %clangxx -fsycl -O2 %s -o %t.out
2+
// XFAIL: *
23
#include <CL/sycl.hpp>
34
#if (SYCL_EXT_ONEAPI_MATRIX == 2)
45
#include <iostream>

0 commit comments

Comments
 (0)