-
Notifications
You must be signed in to change notification settings - Fork 752
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SYCL][E2E][Joint Matrix] OOB tests to support more shapes, layouts
- Loading branch information
1 parent
71ca51f
commit adc76e4
Showing
6 changed files
with
135 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 10 additions & 9 deletions
19
.../Matrix/SG32/joint_matrix_unaligned_k.cpp → ...trix/joint_matrix_out_bounds_colmajor.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
//==-------- joint_matrix_unaligned_k.cpp - DPC++ joint_matrix-------------==// | ||
//==----joint_matrix_out_bounds_colmajor.cpp - DPC++ joint_matrix---------==// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===----------------------------------------------------------------------===// | ||
// REQUIRES: aspect-ext_intel_matrix | ||
// REQUIRES-INTEL-DRIVER: lin: 27501, win: 101.4943 | ||
|
||
// UNSUPPORTED: gpu-intel-dg2, cpu | ||
|
||
// RUN: %{build} -o %t.out | ||
// RUN: %{run} %t.out | ||
|
||
// RUN: %{build} -o %t32.out -DSG_SZ=32 | ||
// RUN: %{run} %t32.out | ||
|
||
// XFAIL:gpu | ||
// XFAIL-TRACKER: GSD-4181 | ||
// XFAIL-TRACKER: GSD-5768 | ||
|
||
#include "common.hpp" | ||
|
||
#define SG_SZ 32 | ||
constexpr size_t TN = 16; | ||
static constexpr size_t MATRIX_K = 1024 + 14; | ||
|
||
#include "joint_matrix_out_bounds_impl.hpp" | ||
|
||
int main() { | ||
std::cout << "A col major, B col major:\n"; | ||
test_all<layout::col_major, layout::col_major>(); | ||
} |
This file was deleted.
Oops, something went wrong.