File tree Expand file tree Collapse file tree 9 files changed +8
-31
lines changed Expand file tree Collapse file tree 9 files changed +8
-31
lines changed Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -o %t.out
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -o %t.out
12
12
// RUN: %{run} %t.out
13
13
14
14
#include " ../common.hpp"
15
15
16
- using namespace sycl ;
17
- using namespace sycl ::ext::oneapi::experimental::matrix;
18
-
19
16
#define SG_SZ 32
20
17
constexpr size_t TN = 16 ;
21
18
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
12
12
// RUN: %{run} %t.out
13
13
14
- // XFAIL: cpu
15
-
16
14
#include " ../../common.hpp"
17
15
18
16
#define SG_SZ 32
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
12
12
// RUN: %{run} %t.out
13
13
14
- // XFAIL: cpu
15
-
16
14
#include " ../../common.hpp"
17
15
18
- using namespace sycl ;
19
- using namespace sycl ::ext::oneapi::experimental::matrix;
20
-
21
16
#define SG_SZ 32
22
17
constexpr size_t TN = 16 ;
23
18
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
12
12
// RUN: %{run} %t.out
13
13
14
- // XFAIL: cpu
15
-
16
14
#include " ../common.hpp"
17
15
18
16
constexpr size_t TN = 16 ;
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -D__SPIRV_USE_COOPERATIVE_MATRIX -o %t.out
12
12
// RUN: %{run} %t.out
13
13
14
- // XFAIL: cpu
15
-
16
14
#include " ../common.hpp"
17
15
18
16
constexpr size_t TN = 16 ;
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -o %t.out
Original file line number Diff line number Diff line change 5
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
6
//
7
7
// ===----------------------------------------------------------------------===//
8
- // REQUIRES: matrix-tf32
8
+ // REQUIRES: aspect-ext_intel_matrix, arch-intel_gpu_pvc
9
9
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943
10
10
11
11
// RUN: %{build} -o %t.out
Original file line number Diff line number Diff line change 156
156
config .available_features .add (
157
157
"matrix-fp16"
158
158
) # PVC implies the support of FP16 matrix
159
- config .available_features .add (
160
- "matrix-tf32"
161
- ) # PVC implies the support of TF32 matrix
162
159
if lit_config .params .get ("gpu-intel-pvc-vg" , False ):
163
160
config .available_features .add ("gpu-intel-pvc-vg" )
164
161
config .available_features .add (
165
162
"matrix-fp16"
166
163
) # PVC-VG implies the support of FP16 matrix
167
- config .available_features .add (
168
- "matrix-tf32"
169
- ) # PVC-VG implies the support of TF32 matrix
170
164
if lit_config .params .get ("matrix" , False ):
171
165
config .available_features .add ("matrix" )
172
166
173
- if lit_config .params .get ("matrix-tf32" , False ):
174
- config .available_features .add ("matrix-tf32" )
175
-
176
167
if lit_config .params .get ("matrix-xmx8" , False ):
177
168
config .available_features .add ("matrix-xmx8" )
178
169
config .available_features .add (
You can’t perform that action at this time.
0 commit comments