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

doc: fixes to dataflow_pattern #8247

Merged
merged 1 commit into from
Jun 12, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions python/tvm/relay/dataflow_pattern/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,11 +547,11 @@ class CallPattern(DFPattern):

Parameters
----------
op: realy.dataflow_pattern.DFPattern
op: relay.dataflow_pattern.DFPattern
The operation to be called.

args: List[realy.dataflow_pattern.DFPattern]
The arguments to the call.
args: List[relay.dataflow_pattern.DFPattern]
The arguments to the call or None to match any arguments.

"""

Expand All @@ -569,10 +569,10 @@ class FunctionPattern(DFPattern):

Parameters
----------
params: List[realy.dataflow_pattern.DFPattern]
The parameters to the Function.
params: List[relay.dataflow_pattern.DFPattern]
The parameters to the Function or None to match any parameters.

body: realy.dataflow_pattern.DFPattern
body: relay.dataflow_pattern.DFPattern
The body fo the Function

"""
Expand Down Expand Up @@ -886,7 +886,7 @@ def partition(

Parameters
----------
partion: tvm.relay.dataflow_pattern.DFPattern
pattern: tvm.relay.dataflow_pattern.DFPattern
The pattern to match
expr : tvm.relay.Expr
The expression to split into functions
Expand Down