Synchronization Validation is implemented in the VK_LAYER_KHRONOS_validation layer
. When enabled, the Synchronization Object is intended to identify resource access conflicts due to missing or incorrect synchronization operations between actions (Draw, Copy, Dispatch, Blit) reading or writing the same regions of memory.
Synchronization will ideally be run periodically after resolving any outstanding validation checks from all other validation objects, so that issues may be addressed in early stages of development.
The specific areas covered by this layer are currently tracked in the Synchronization Validation Project. Requests for additional checks can be requested by creating a Github issue.
For an overview of how to configure layers, refer to the Layers Overview and Configuration document.
Synchronization Validation settings are managed by configuring the Validation Layer. These settings are described in the VK_LAYER_KHRONOS_validation document.
The khronos_validation.validate_sync
configuration variable enables Synchronization Validation. Additional configuration settings have this naming pattern: khronos_validation.syncval_*
.
Synchronization Validation settings can also be managed using the Vulkan Configurator included with the Vulkan SDK.
The pipelined and multi-threaded nature of Vulkan makes it particularly important for applications to correctly insert needed synchronization primitives, and for validation to diagnose unprotected memory access hazards. Synchronization reports the presence of access hazards including information to identify the Vulkan operations which are in conflict. The reported hazards are:
RAW | Read-after-write | Occurs when a subsequent operation uses the result of a previous operation without waiting for the result to be completed. |
WAR | Write-after-read | Occurs when a subsequent operation overwrites a memory location read by a previous operation before that operation is complete (requires only execution dependency). |
WAW | Write-after-write | Occurs when a subsequent operation writes to the same set of memory locations (in whole or in part) being written by a previous operation. |
WRW | Write-racing-write | Occurs when unsynchronized subpasses/queues perform writes to the same set of memory locations. |
RRW | Read-racing-write | Occurs when unsynchronized subpasses/queues perform read and write operations on the same set of memory locations. |
-
Hazard detection for memory usage for commands within the same command buffer.
-
Synchronization operations .
- vkCmdPipelineBarrier.
- vkCmdSetEvent/vkCmdWaitEvents/vkCmdResetEvent.
- renderpass/subpass barriers.
-
The
VK_KHR_synchronization2
extension- vkCmdPipelineBarrier2KHR
- vkCmdSetEvent2KHR/vkCmdWaitEvents2KHR/vkCmdResetEvent2KHR.
-
Image layout transition hazard and access tracking.
-
Load/Store/Resolve operations within Subpasses.
-
ExecuteCommands detection of hazard from or with secondary command buffers
-
QueueSubmit/QueueSubmit2 time hazard detection
-
Semaphore (binary only) and Fence synchronization operations/effects
-
Device and Queue WaitIdle support
-
Dynamic Rendering support
- Does not include implementation of multi-view renderpass support.
- Host set event not supported.
- Memory access checks not suppressed for VK_CULL_MODE_FRONT_AND_BACK.
- Does not include component granularity access tracking, or correctly support swizzling.
- Indirectly accessed (indirect/indexed) buffers validated at binding granularity. (Every valid location assumed to be accessed.)
- Host synchronization not supported, except Fences (above).
- Timeline Semaphore not supported
- Queue family ownership transfer not supported
- Hazards related to memory aliasing are not detected properly
To debug synchronization validation issues (all platforms):
- Create a debug callback with
vkCreateDebugUtilsMessengerEXT
with theVK_DEBUG_REPORT_ERROR_BIT_EXT
set. - Enable synchronization as noted above. On Linux and Windows this can be simplified by enabling Synchronization Validation using Vulkan Configurator (vkconfig).
- Set a breakpoint in the debug callback and run your application in the debugger.
- The callback will be called when a
vkCmd
... command with a hazard is recorded.
On Windows, Synchronization Validation can be run using just vkconfig and the debugger without defining a callback:
- In vkconfig.
- Enable Synchronization Validation.
- Select 'Debug Actions' 'Break' and 'Debug Output'.
- Debug application in Visual Studio.
- Hazard messages will appear in the debugger output window and the debugger will break (in the validation layer code) when a
vkCmd
... command with a hazard is recorded.
All synchronization error messages begin with SYNC-<hazard name>. The message body is constructed:
<cmd name>: Hazard <hazard name> <command specific details> Access info (<...>)
Command specific details typically include the specifics of the access within the current command. The Access info is common to all Synchronization Validation error messages.
Field | Description |
usage
|
The stage/access of the current command |
prior_usage
|
The stage/access of the previous (hazarded) use |
read_barrier
|
For read usage , the list of stages with execution barriers between prior_usage and usage
|
write_barrier
|
For write usage , the list of stage/access (in usage format) with memory barriers between prior_usage and usage
|
command
|
The command that performed prior_usage
|
seq_no
|
The zero based index of command within the command buffer
|
reset_no
|
the reset count of the command buffer command is recorded to
|
- Assuming Pipeline stages are logically extended with respect to memory access barriers. Specifying the vertex shader stage in a barrier will not apply to all subsequent shader stages read/write access.
- Invalid stage/access pairs (specifying a pipeline stage for which a given access is not valid) that yield no barrier.
- Relying on implicit subpass dependencies with
VK_SUBPASS_EXTERNAL
when memory barriers are needed. - Missing memory dependencies with Image Layout Transitions from pipeline barrier or renderpass Begin/Next/End operations.
- Missing stage/access scopes for load operations, noting that color and depth/stencil are done by different stage/access.
- Read and write barriers in the error message can help identify the synchronization operation (either subpass dependency or pipeline barrier) with insufficient or incorrect destination stage/access masks (second scope).
Access info read_barrier
andwrite_barrier
values of 0, reflect the absence of any barrier, and can indicate an insufficient or incorrect source mask (first scope).- Insert additional barriers with stage/access
VK_PIPELINE_STAGE_ALL_COMMANDS_BIT
,VK_ACCESS_MEMORY_READ_BIT
|VK_ACCESS_MEMORY_WRITE_BIT
for bothsrc*Mask
anddst*Mask
fields to locate missing barriers. If the inserted barrier resolves a hazard, the conflicting access happens-before the inserted barrier. (Be sure to delete later.)
Synchronization Examples https://github.com/KhronosGroup/Vulkan-Docs/wiki/Synchronization-Examples
Keeping your GPU fed without getting bitten https://www.youtube.com/watch?v=oF7vOTTaAh4
Yet another blog explaining Vulkan synchronization http://themaister.net/blog/2019/08/14/yet-another-blog-explaining-vulkan-synchronization/
A Guide to Vulkan Synchronization Validation https://www.khronos.org/news/permalink/blog-a-guide-to-vulkan-synchronization-validation