Skip to content

Commit 0b20e28

Browse files
committed
Format
1 parent 511c8a5 commit 0b20e28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Dialect/SPIRV/IR/SPIRVTypes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ std::optional<int64_t> SPIRVType::getSizeInBytes() {
741741
return std::nullopt;
742742
})
743743
.Case<VectorType, TensorArmType>([](auto type) -> std::optional<int64_t> {
744-
if(std::optional<int64_t> elementSize =
744+
if (std::optional<int64_t> elementSize =
745745
cast<ScalarType>(type.getElementType()).getSizeInBytes())
746746
return *elementSize * type.getNumElements();
747747
return std::nullopt;

0 commit comments

Comments
 (0)