Skip to content

Commit

Permalink
[SYCL] Support intel::reqd_work_group_size (fix intel#8.3)
Browse files Browse the repository at this point in the history
Signed-off-by: Aleksander Fadeev <[email protected]>
  • Loading branch information
fadeeval committed Mar 18, 2020
1 parent 421217a commit f9c5822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/include/clang/Basic/Attr.td
Original file line number Diff line number Diff line change
Expand Up @@ -2417,7 +2417,7 @@ def ReqdWorkGroupSize : InheritableAttr {
let Spellings = [GNU<"reqd_work_group_size">,
CXX11<"cl","reqd_work_group_size">,
CXX11<"intel","reqd_work_group_size">];
let Args = [UnsignedArgument<"XDim">, DefaultIntArgument<"YDim", 1>,
let Args = [IntArgument<"XDim">, DefaultIntArgument<"YDim", 1>,
DefaultIntArgument<"ZDim", 1>];
let Subjects = SubjectList<[Function], ErrorDiag>;
let Documentation = [Undocumented];
Expand Down

0 comments on commit f9c5822

Please sign in to comment.