Skip to content

Commit ad6225c

Browse files
authored
[SYCL][NFC] Fix TM in Intel names (#8393)
1 parent 806775f commit ad6225c

File tree

2 files changed

+22
-23
lines changed

2 files changed

+22
-23
lines changed

sycl/include/sycl/ext/oneapi/matrix/static-query-use.hpp

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@
66
//
77
// ===--------------------------------------------------------------------=== //
88
// This file implements the static query interface for the joint_matrix
9-
// experimental extension. Intel AMX, Intel XMX, and Nvidia Tensor Cores support
10-
// different logical sizes and types. The query interface is used to validate
11-
// user code and inform them about supported types, sizes, scopes, and layouts
12-
// by the current implementation. Note that this query interface is a
13-
// compile-time query, so there will be no runtime errors. The query interface
14-
// provides three functionalities: 1- At compile time, inform the user whether a
15-
// specific combination is valid or not. 2- Construct the matrices using a
16-
// default shape if user does not provide a combination 3- General query
17-
// interface for sizes, types, scopes. This is needed to void padding by the
18-
// user, for tuning, and efficient code generation if used by a library.
9+
// experimental extension. Intel(R) Advanced Matrix Extensions (Intel(R) AMX),
10+
// and Intel(R) Xe Matrix Extensions (Intel(R) XMX) support different logical
11+
// sizes and types. The query interface is used to validate user code and inform
12+
// them about supported types, sizes, scopes, and layouts by the current
13+
// implementation. Note that this query interface is a compile-time query, so
14+
// there will be no runtime errors. The query interface provides three
15+
// functionalities: 1- At compile time, inform the user whether a specific
16+
// combination is valid or not. 2- Construct the matrices using a default shape
17+
// if user does not provide a combination 3- General query interface for sizes,
18+
// types, scopes. This is needed to void padding by the user, for tuning, and
19+
// efficient code generation if used by a library.
1920

2021
#pragma once
2122

sycl/include/sycl/ext/oneapi/matrix/static-query.hpp

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@
66
//
77
// ===--------------------------------------------------------------------=== //
88
// This file implements the static query interface for the joint_matrix
9-
// experimental extension. AMX, DPAS and different other TPUs support different
10-
// logical sizes and types. The query interface is used to validate user code
11-
// and inform them about supported types, sizes, scope, and layouts by the
12-
// current implementation. Note that this query interface is a compile-time
13-
// query, so there will be no runtime errors. The query interface provides
14-
// three functionalities:
15-
// 1- At compile time, inform the user whether a specific
16-
// combination is valid or not.
17-
// 2- Construct the matrices using a default shape
18-
// if user does not provide a combination
19-
// 3- General query interface for sizes, types,
20-
// static/dynamic, scope. This is needed to void padding by the user,
21-
// for tuning, and efficient code generation if used by a library.
9+
// experimental extension. Intel(R) Advanced Matrix Extensions (Intel(R) AMX),
10+
// DPAS and different other TPUs support different logical sizes and types. The
11+
// query interface is used to validate user code and inform them about supported
12+
// types, sizes, scope, and layouts by the current implementation. Note that
13+
// this query interface is a compile-time query, so there will be no runtime
14+
// errors. The query interface provides three functionalities: 1- At compile
15+
// time, inform the user whether a specific combination is valid or not. 2-
16+
// Construct the matrices using a default shape if user does not provide a
17+
// combination 3- General query interface for sizes, types, static/dynamic,
18+
// scope. This is needed to void padding by the user, for tuning, and efficient
19+
// code generation if used by a library.
2220

2321
#pragma once
2422

0 commit comments

Comments
 (0)