-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathmixed_storage_classes.stderr
More file actions
36 lines (36 loc) · 1018 Bytes
/
mixed_storage_classes.stderr
File metadata and controls
36 lines (36 loc) · 1018 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
OpCapability Shader
OpCapability Float64
OpCapability Int64
OpCapability Int16
OpCapability Int8
OpCapability ShaderClockKHR
OpCapability VulkanMemoryModel
OpExtension "SPV_KHR_shader_clock"
OpExtension "SPV_KHR_vulkan_memory_model"
OpMemoryModel Logical Vulkan
OpEntryPoint GLCompute %1 "main"
OpExecutionMode %1 LocalSize 64 1 1
%2 = OpString "$OPSTRING_FILENAME/mixed_storage_classes.rs"
OpName %4 "workgroup_data"
OpDecorate %5 ArrayStride 4
OpDecorate %6 Block
OpMemberDecorate %6 0 Offset 0
OpDecorate %3 Binding 0
OpDecorate %3 DescriptorSet 0
%7 = OpTypeVoid
%8 = OpTypeFunction %7
%9 = OpTypeInt 32 0
%10 = OpConstant %9 256
%5 = OpTypeArray %9 %10
%11 = OpTypePointer StorageBuffer %5
%6 = OpTypeStruct %5
%12 = OpTypePointer StorageBuffer %6
%3 = OpVariable %12 StorageBuffer
%13 = OpConstant %9 0
%14 = OpTypeBool
%15 = OpTypePointer StorageBuffer %9
%16 = OpConstant %9 42
%17 = OpTypePointer Workgroup %9
%18 = OpTypeArray %9 %10
%19 = OpTypePointer Workgroup %18
%4 = OpVariable %19 Workgroup