-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Error in Operator implementation guide #12168
Comments
@mxnet-label-bot could you please add [Doc] here? |
@nswamy Please label [Doc] for this issue. Thanks |
@apeforest there is an ongoing PR to update the operator implementation guide - #12230 If you could comment there about what issue you found in the tutorial, it can be fixed in that PR itself. |
@anirudhacharya The markdown file in the github is correct. The problem happens in the html generation. |
@nswamy This error is not related to Operator. It is purely a html error. Please remove the [Operator] label and changed it to [Doc]. Thanks! |
I think I found the culprit. There's a post-process step for building the versioned website that uses beautiful soup to inject the modified nav bar. It also has a step that swaps out the html tags for < and > with actual < and >. So, introduce this AddVersion.py script and it swaps it back to I can remove that line, but I don't know why it's there in the first place. @piiswrong - you authored it... do you remember what it is for? Can we safely remove it, or provide a more focused implementation so it doesn't break the tags we're trying to put in there? EDIT: I commented that line out and reran the process on master, and the output is fixed. Not sure if something somewhere is broken though... |
Description
Error in the operator implementation guide:
https://mxnet.incubator.apache.org/faq/add_op_in_backend.html
It's correct in the markdown file: https://github.com/apache/incubator-mxnet/blob/master/docs/faq/add_op_in_backend.md
Error Message:
"Note that forward and backward functions are registered with attribute key FCompute, rather than FCompute."
The text was updated successfully, but these errors were encountered: