Skip to content

Commit

Permalink
rspirv: changes for sdk-1.3.268
Browse files Browse the repository at this point in the history
  • Loading branch information
exrook committed Nov 27, 2023
1 parent 2bea613 commit 9eb2bfc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions rspirv/binary/assemble.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ impl Assemble for dr::Operand {
Self::MemorySemantics(v) => result.push(v.bits()),
Self::MemoryAccess(v) => result.push(v.bits()),
Self::KernelProfilingInfo(v) => result.push(v.bits()),
Self::CooperativeMatrixOperands(v) => result.push(v.bits()),
Self::SourceLanguage(v) => result.push(v as u32),
Self::ExecutionModel(v) => result.push(v as u32),
Self::AddressingModel(v) => result.push(v as u32),
Expand Down Expand Up @@ -87,6 +88,12 @@ impl Assemble for dr::Operand {
Self::FPOperationMode(v) => result.push(v as u32),
Self::OverflowModes(v) => result.push(v as u32),
Self::PackedVectorFormat(v) => result.push(v as u32),
Self::HostAccessQualifier(v) => result.push(v as u32),
Self::CooperativeMatrixLayout(v) => result.push(v as u32),
Self::CooperativeMatrixUse(v) => result.push(v as u32),
Self::InitializationModeQualifier(v) => result.push(v as u32),
Self::LoadCacheControl(v) => result.push(v as u32),
Self::StoreCacheControl(v) => result.push(v as u32),
}
}
}
Expand Down

0 comments on commit 9eb2bfc

Please sign in to comment.