You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `grf_size` and `grf_size_automatic` properties are compile-time
constant kernel properties. We used to have a way to pass these
properties via `single_task` as the old example showed, but this was
deprecated and removed a while ago. The proper way to decorate a kernel
with a compile-time property now is to define a `get` function in the
kernel's class.
This extension is written against the SYCL 2020 revision 7 specification. All
39
+
This extension is written against the SYCL 2020 revision 11 specification. All
40
40
references below to the "core SYCL specification" or to section numbers in the
41
41
SYCL specification refer to that revision.
42
42
@@ -87,7 +87,6 @@ the implementation supports this feature, or applications can test the macro's
87
87
value to determine which of the extension's features the implementation
88
88
supports.
89
89
90
-
91
90
[%header,cols="1,5"]
92
91
|===
93
92
|Value
@@ -117,7 +116,9 @@ At most one of the `grf_size` and `grf_size_automatic` properties may be associa
117
116
If a kernel is not associated with a `grf_size` or `grf_size_automatic` property, the manner in which the GRF size is selected is implementation-defined.
0 commit comments