Skip to content

Commit

Permalink
fix typo of py args (openxla#2104)
Browse files Browse the repository at this point in the history
because that the lambda's signature is `[](MlirContext context,
std::string artifact)`.
  • Loading branch information
qingyunqu authored Mar 18, 2024
1 parent b8a10b8 commit 9c1bccf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stablehlo/integrations/python/StablehloModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -551,5 +551,5 @@ PYBIND11_MODULE(_stablehlo, m) {

return {module.release()};
},
py::arg("module"), py::arg("target"));
py::arg("context"), py::arg("artifact"));
}

0 comments on commit 9c1bccf

Please sign in to comment.