Name Strings
SPV_INTEL_split_barrier
Contact
To report problems with this extension, please open a new issue at:
Contributors
-
Ben Ashbaugh, Intel
Notice
Copyright (c) 2022 Intel Corporation. All rights reserved.
Status
-
Shipping
Version
Last Modified Date |
2022-02-24 |
Revision |
1 |
Dependencies
This extension is written against the SPIR-V Specification, Version 1.6 Revision 1.
This extension requires SPIR-V 1.0.
Overview
This extension adds SPIR-V instructions to split a control barrier (OpControlBarrier) into two separate operations: the first indicates that an invocation has "arrived" at the barrier but should continue executing, and the second indicates that an invocation should "wait" for other invocations to arrive at the barrier before executing further.
Splitting a barrier operation may improve performance and may provide a closer match to "latch" or "barrier" operations in other parallel languages such as C++ 20.
Extension Name
To use this extension within a SPIR-V module, the appropriate OpExtension must be present in the module:
OpExtension "SPV_INTEL_split_barrier"
New Capabilities
This extension introduces the new capability:
SplitBarrierINTEL
Modifications to the SPIR-V Specification, Version 1.6
Modify Section 3.31, Capability, adding rows to the Capability table:
Capability | Implicitly Declares | |
---|---|---|
6141 |
SplitBarrierINTEL |
Add to Section 3.42.20, Barrier Instructions:
Issues
None.
Revision History
Rev | Date | Author | Changes |
---|---|---|---|
1 |
2022-02-24 |
Ben Ashbaugh |
Initial revision |