Skip to content

Commit

Permalink
fix def
Browse files Browse the repository at this point in the history
  • Loading branch information
abhigunj committed Sep 6, 2024
1 parent 3edd86d commit a66e063
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stablehlo/integrations/c/StablehloApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ MlirLogicalResult stablehloGetSmallerVersion(MlirStringRef version1,
return mlirLogicalResultSuccess();
}

MlirLogicalResult stablehloSerializePortableArtifact(
MlirLogicalResult stablehloSerializePortableArtifactFromModule(
MlirModule moduleStr, MlirStringRef targetVersion,
MlirStringCallback callback, void *userData) {
mlir::detail::CallbackOstream stream(callback, userData);
Expand All @@ -88,7 +88,7 @@ MlirLogicalResult stablehloSerializePortableArtifact(
return mlirLogicalResultSuccess();
}

MlirLogicalResult stablehloSerializePortableArtifact(
MlirLogicalResult stablehloSerializePortableArtifactFromString(
MlirStringRef moduleStr, MlirStringRef targetVersion,
MlirStringCallback callback, void *userData) {
mlir::detail::CallbackOstream stream(callback, userData);
Expand Down

0 comments on commit a66e063

Please sign in to comment.