Skip to content

Commit 596875c

Browse files
committed
Fix missing arg
1 parent 0891412 commit 596875c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mlir/lib/Dialect/GPU/Transforms/ModuleToBinary.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ LogicalResult moduleSerializer(GPUModuleOp op,
114114
return failure();
115115
}
116116

117-
Attribute object = target.createObject(*serializedModule, targetOptions);
117+
Attribute object =
118+
target.createObject(op, *serializedModule, targetOptions);
118119
if (!object) {
119120
op.emitError("An error happened while creating the object.");
120121
return failure();

0 commit comments

Comments
 (0)