ChaiBapchya commented on a change in pull request #15517: [WIP]Tensor Inspector 
Tutorial
URL: https://github.com/apache/incubator-mxnet/pull/15517#discussion_r303174371
 
 

 ##########
 File path: docs/faq/tensor_inspector_tutorial.md
 ##########
 @@ -0,0 +1,164 @@
+<!--- Licensed to the Apache Software Foundation (ASF) under one -->
+<!--- or more contributor license agreements.  See the NOTICE file -->
+<!--- distributed with this work for additional information -->
+<!--- regarding copyright ownership.  The ASF licenses this file -->
+<!--- to you under the Apache License, Version 2.0 (the -->
+<!--- "License"); you may not use this file except in compliance -->
+<!--- with the License.  You may obtain a copy of the License at -->
+<!---   http://www.apache.org/licenses/LICENSE-2.0 -->
+<!--- Unless required by applicable law or agreed to in writing, -->
+<!--- software distributed under the License is distributed on an -->
+<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -->
+<!--- KIND, either express or implied.  See the License for the -->
+<!--- specific language governing permissions and limitations -->
+<!--- under the License. -->
+
+# Use TensorInspector to Help Debug Operators
+
+## Introduction
+
+When developing new operators, developers need to deal with tensor objects 
extensively. This new utility, Tensor Inspector, mainly aims to help developers 
debug by providing unified interfaces to print, check, and dump the tensor 
value. To developers' convenience, This utility works for all the three data 
types: Tensors, TBlobs, and NDArrays. Also, it supports both CPU and GPU 
tensors.
+
+
+## Usage 
+
+This utility locates in `src/common/tensor_inspector.h`. To use it in any 
operator code, just include `tensor_inspector`, construct an `TensorInspector` 
object, and call the APIs on that object. You can run any script that uses the 
operator you just modified then.
+
+The screenshot below shows a sample usage in 
`src/operator/nn/convolution-inl.h`.
+
+![Screen Shot 2019-07-08 at 5 03 46 
PM](https://user-images.githubusercontent.com/16669457/60850062-68690e00-a1a2-11e9-8268-033edde17aa4.png)
+
+
+## Functionalities/APIs
+
+### Create a TensorInspector Object from Tensor, TBlob, and NDArray Objects
+
+You can create a `TensorInspector` object by passing in two things: 1) an 
object of type `Tensor`, `Tbob`, or `NDArray`, and 2) an `RunContext` object.
+
+Essentially, `TensorInspector` can be understood as a wrapper class around 
`TBlob`. Internally, the `Tensor`, `Tbob`, or `NDArray` object that you passed 
in will all be converted to a `TBlob` object. The `RunContext` object is used 
when the the tensor is a GPU tensor; in such case, we need to use the context 
information to copy the data from GPU memory to CPU/main memory.
 
 Review comment:
   ```suggestion
   Essentially, `TensorInspector` can be understood as a wrapper class around 
`TBlob`. Internally, the `Tensor`, `Tbob`, or `NDArray` object that you passed 
in will be converted to a `TBlob` object. The `RunContext` object is used when 
the the tensor is a GPU tensor; in such a case, we need to use the context 
information to copy the data from GPU memory to CPU/main memory.
   ```

----------------------------------------------------------------
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