samskalicky commented on a change in pull request #17486: Update CustomOp doc 
with changes for GPU support
URL: https://github.com/apache/incubator-mxnet/pull/17486#discussion_r375011251
 
 

 ##########
 File path: example/extensions/lib_custom_op/README.md
 ##########
 @@ -28,26 +28,42 @@ Custom operators (CustomOp) enable users to write new 
operators without compilin
 
 ### Have MXNet Ready
 
-First you should install MXNet either from compiling from source code or 
download from nightly build. It doesn’t matter if the build comes with CUDA or 
MKLDNN. The custom operator doesn’t interact with the execution of other native 
MXNet operators.
+Custom Operator support was merged (#15921, #17270) and is not available in 
versions of MXNet prior to v1.7.0. To access the feature now, please install 
MXNet by compiling from source using master or using the previously mentioned 
commits, downloading one of the nightly builds, or from a release of MXNet 
1.7.0+. For running the following example, it doesn’t matter if it is a CUDA, 
MKLDNN or plain MXNet build; the custom operator doesn’t interact with the 
execution of other native MXNet operators. Note that if you want to run GPU 
examples and write your custom operators running on GPU, you still need an 
MXNet CUDA build.
 
-### Run An Example:
+### Run An Example
 
-You can start getting familiar with custom operators by running some examples 
provided in the **example/extensions/lib_custom_op** directory. Start with a 
common linear algebra operator like `gemm` (Generalized Matrix Multiplication). 
Go to `lib_custom_op` directory and follow these steps:
+You can start getting familiar with custom operators by running some examples 
provided in the `example/extensions/lib_custom_op` directory. Start with a 
common linear algebra operator like `gemm` (Generalized Matrix Multiplication). 
Go to `lib_custom_op` directory and follow these steps:
 
 1. Run `make gemm_lib`. The Makefile will generate a dynamic library 
**libgemm_lib.so** compiled from `gemm_lib.cc`. This is the library you are 
going to load that contains everything for the custom gemm operator.
-2. Run `python test_gemm.py`. It’ll first load the above .so library, find the 
operators, register them in the MXNet backend, print "Found x operators", then 
invoke the operator like a regular MXNet operator and output the result.
+2. Run `python test_gemm.py`. It’ll first load the library compiled from step 
1, find the operators, register them in the MXNet backend, then invoke the 
operator like a regular MXNet operator and output the result.
 
 Review comment:
   This is good. Lets add another sentence introducing the log that is coming 
next. I suggest:
   "Below is the output when running the `python test_gemm.py` command. Notice 
that it loaded 2 operators: `my_gemm` and `state_gemm`.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to