Skip to content

Commit

Permalink
python
Browse files Browse the repository at this point in the history
  • Loading branch information
liqiangxl committed Oct 25, 2024
1 parent 12ad2e6 commit 94680b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csrc/python_frontend/python_bindings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ void initNvFuserPythonBindings(PyObject* module) {
[](PointwiseParams& self) { return self.unroll_factor_inner; },
[](PointwiseParams& self, int64_t unroll_factor_inner_) {
self.unroll_factor_inner = unroll_factor_inner_;
});
});
pointwise_config.def(
"__repr__", [](const PointwiseParams& self) { return self.toString(); });

Expand Down

0 comments on commit 94680b6

Please sign in to comment.