Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Relay][Pass] Add ExtractOperators pass #8996

Merged
merged 11 commits into from
Sep 16, 2021
Prev Previous commit
Next Next commit
lint
  • Loading branch information
anwang2009 committed Sep 13, 2021
commit 2f11222a451d9d962f00022f205386ea82183cbd
2 changes: 1 addition & 1 deletion src/relay/analysis/extract_operators.cc
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class OperatorExtractorWrapper : private ExprVisitor {
};

Array<String> ExtractOperatorsPacked(const IRModule& mod) {
return OperatorExtractorWrapper(mod).Extract();
return OperatorExtractorWrapper(mod).Extract();
}

TVM_REGISTER_GLOBAL("relay.analysis.ExtractOperators").set_body_typed(ExtractOperatorsPacked);
Expand Down