Skip to content

Commit

Permalink
convert full-width characters to half-width characters (apache#11112)
Browse files Browse the repository at this point in the history
* `)` -> `)`

* `】` -> `]`

* `、`

* `,` -> `,`
  • Loading branch information
SigureMo authored and Sergey Shtin committed May 17, 2022
1 parent 92b816f commit 8e0853c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ The community also continues to bring high quality improvements to the existing
* Tutorial: Using the template-free auto-scheduler on CPU (#6488)

#### BYOC
* External codegen support in Relay (#4482)(#4544)
* External codegen support in Relay (#4482), (#4544)
* Bring Your Own Codegen Guide -- Part 1 #4602
* Bring Your Own Codegen Guide -- Part 2 #4718
* Relay annotation and partitioning for external compilers #4570
Expand Down Expand Up @@ -2140,7 +2140,7 @@ Rust language support in TVM includes two parts. 1. The frontend wraps the curre
* Increate the robuteness of CI test (#2841, #2798, #2793, #2788, #2781, #2727, #2710, #2711, #2923)
* Improve conda build (#2742)
* Add caffe2 nnvm frontend to CI (#3018)
* Use bridge network and expose port on macOS when launch docker image (#3086
* Use bridge network and expose port on macOS when launch docker image (#3086)
* Run DarkNet tests (#2673)
* Add file type check (#3116)
* Always run cpptest during build to ensure library correctness (#3147)
Expand Down
4 changes: 2 additions & 2 deletions python/tvm/relay/frontend/oneflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -1453,7 +1453,7 @@ def __init__(self, shape, dtype, nodes, model_dir_path):
import oneflow

model = oneflow.load(model_dir_path)
# model_array: keys: layer_namevalues: dict('path', 'params')
# model_array: keys: layer_name, values: dict('path', 'params')
for layer_name in model:
layer = model[layer_name]
layer_node = {}
Expand Down Expand Up @@ -1718,7 +1718,7 @@ def _convert_operator(self, op_name, node_inputs, op_attr):
Parameters
----------
op_name : str
Operator name, such as conv2drelu
Operator name, such as conv2d and relu
node_inputs : list of tvm.relay.function.Function
List of inputs.
op_attr : dict
Expand Down
2 changes: 1 addition & 1 deletion python/tvm/script/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def report_error(self, message: str, span: Union[ast.Span, tvm.ir.Span]):
----------
message : str
Error message
span : Union[synr.ast.Span, tvm.ir.Span
span : Union[synr.ast.Span, tvm.ir.Span]
Location of the error
"""
if isinstance(span, tvm.ir.Span):
Expand Down

0 comments on commit 8e0853c

Please sign in to comment.