Skip to content

Commit df3c508

Browse files
committed
proper python messages
1 parent e610c2c commit df3c508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/lib/Bindings/Python/IRTypes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ class PyMemRefType : public PyConcreteType<PyMemRefType, PyShapedType> {
628628
if (mlirLogicalResultIsFailure(mlirMemRefTypeGetStridesAndOffset(
629629
self, strides.data(), &offset)))
630630
throw std::runtime_error(
631-
"failed to extract strides and offset from memref");
631+
"Failed to extract strides and offset from memref.");
632632
return {strides, offset};
633633
},
634634
"The strides and offset of the MemRef type.")

0 commit comments

Comments
 (0)