Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Specify that VUID-RuntimeSpirv-x-06432 applies only to compute shaders #2199

Merged
merged 2 commits into from
Aug 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions appendices/spirvenv.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -1740,20 +1740,21 @@ ifdef::VK_NV_ray_tracing_invocation_reorder[]
ename:VK_PIPELINE_CREATE_RAY_TRACING_SKIP_TRIANGLES_BIT_KHR set
endif::VK_NV_ray_tracing_invocation_reorder[]
* [[VUID-{refpage}-x-06429]]
The pname:x size in code:LocalSize or code:LocalSizeId must: be less
than or equal to
In compute shaders using the code:GLCompute {ExecutionModel} the pname:x
size in code:LocalSize or code:LocalSizeId must: be less than or equal to
slink:VkPhysicalDeviceLimits::pname:maxComputeWorkGroupSize[0]
* [[VUID-{refpage}-y-06430]]
The pname:y size in code:LocalSize or code:LocalSizeId must: be less
than or equal to
In compute shaders using the code:GLCompute {ExecutionModel} the pname:y
size in code:LocalSize or code:LocalSizeId must: be less than or equal to
slink:VkPhysicalDeviceLimits::pname:maxComputeWorkGroupSize[1]
* [[VUID-{refpage}-z-06431]]
The pname:z size in code:LocalSize or code:LocalSizeId must: be less
than or equal to
In compute shaders using the code:GLCompute {ExecutionModel} the pname:z
size in code:LocalSize or code:LocalSizeId must: be less than or equal to
slink:VkPhysicalDeviceLimits::pname:maxComputeWorkGroupSize[2]
* [[VUID-{refpage}-x-06432]]
The product of pname:x size, pname:y size, and pname:z size in
code:LocalSize or code:LocalSizeId must: be less than or equal to
In compute shaders using the code:GLCompute {ExecutionModel} the product of
pname:x size, pname:y size, and pname:z size in code:LocalSize or
code:LocalSizeId must: be less than or equal to
slink:VkPhysicalDeviceLimits::pname:maxComputeWorkGroupInvocations
ifndef::VK_VERSION_1_3,VK_KHR_maintenance4[]
* [[VUID-{refpage}-LocalSizeId-06433]]
Expand Down