Skip to content

Commit

Permalink
doc: fixes to dataflow_pattern (apache#8247)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafael Stahl authored and Trevor Morris committed Jun 17, 2021
1 parent 66534af commit ba0dd07
Showing 1 changed file with 7 additions and 7 deletions.
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

0 comments on commit ba0dd07

Please sign in to comment.