Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Fix a typo in operator guide #13115

Merged
merged 6 commits into from
Nov 5, 2018
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
4 changes: 2 additions & 2 deletions docs/faq/add_op_in_backend.md
Original file line number Diff line number Diff line change
Expand Up @@ -489,9 +489,9 @@ in the computational graph. MXNet would
add the missing argument with name `quadratic0_data`, where the prefix
`quadratic0` is the operator name appended with an index and the postfix
`data` comes from the return value of the user defined `FListInputName` function.
Users still can generate an executor for the `quand_func` like the following:
Users still can generate an executor for the `quad_func` like the following:
```python
quand_exe = quand_func.simple_bind(ctx=mx.cpu(), quandratic0_data=(1,))
quad_exe = quad_func.simple_bind(ctx=mx.cpu(), quadratic0_data=(1,))
```
- Line 12: Register shape inference function.
- Line 13: Register type inference function.
Expand Down