mirror of
https://git.suyu.dev/suyu/sirit.git
synced 2026-01-04 21:56:14 +01:00
Add OpGroupNonUniformElect, OpGroupNonUniformBroadcastFirst
This commit is contained in:
parent
d7ad93a888
commit
86a720d2cf
2 changed files with 19 additions and 0 deletions
|
|
@ -1160,6 +1160,14 @@ public:
|
|||
/// TBD
|
||||
Id OpSubgroupAllEqualKHR(Id result_type, Id predicate);
|
||||
|
||||
// Result is true only in the active invocation with the lowest id in the group, otherwise
|
||||
// result is false.
|
||||
Id OpGroupNonUniformElect(Id result_type, Id scope);
|
||||
|
||||
// Result is the Value of the invocation from the active invocation with the lowest id in the
|
||||
// group to all active invocations in the group.
|
||||
Id OpGroupNonUniformBroadcastFirst(Id result_type, Id scope, Id value);
|
||||
|
||||
// Result is the Value of the invocation identified by the id Id to all active invocations in
|
||||
// the group.
|
||||
Id OpGroupNonUniformBroadcast(Id result_type, Id scope, Id value, Id id);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue