This is an automated email from the ASF dual-hosted git repository.
tqchen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm-site.git
The following commit(s) were added to refs/heads/master by this push:
new 01fc5c9 Update the link
new 3b21923 Merge pull request #3 from pingsutw/patch-1
01fc5c9 is described below
commit 01fc5c9ced6c02bddf09a06f02d9fb02d71b3cd1
Author: HUAN-PING SU <[email protected]>
AuthorDate: Wed Mar 4 13:03:01 2020 +0800
Update the link
---
...p-Learning-GPU-Operators-with-TVM-A-Depthwise-Convolution-Example.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/_posts/2017-08-22-Optimize-Deep-Learning-GPU-Operators-with-TVM-A-Depthwise-Convolution-Example.md
b/_posts/2017-08-22-Optimize-Deep-Learning-GPU-Operators-with-TVM-A-Depthwise-Convolution-Example.md
index 8f94fc7..494d531 100644
---
a/_posts/2017-08-22-Optimize-Deep-Learning-GPU-Operators-with-TVM-A-Depthwise-Convolution-Example.md
+++
b/_posts/2017-08-22-Optimize-Deep-Learning-GPU-Operators-with-TVM-A-Depthwise-Convolution-Example.md
@@ -409,7 +409,7 @@ The advantage of operator fusion is obvious.
This is not the end, TVM can do operator fusion in a smarter way. You may
refer to [this](https://github.com/dmlc/tvm/issues/215) and read the source
code provided below.
## Show me the code
-- Declare:
[https://github.com/dmlc/tvm/blob/master/topi/python/topi/nn/convolution.py](https://github.com/dmlc/tvm/blob/master/topi/python/topi/nn/convolution.py)
+- Declare:
[https://github.com/dmlc/tvm/blob/master/topi/python/topi/nn/depthwise_conv2d.py](https://github.com/dmlc/tvm/blob/master/topi/python/topi/nn/depthwise_conv2d.py)
- Schedule:
[https://github.com/dmlc/tvm/blob/master/topi/python/topi/cuda/depthwise_conv2d.py](https://github.com/dmlc/tvm/blob/master/topi/python/topi/cuda/depthwise_conv2d.py)
- Test:
[https://github.com/dmlc/tvm/blob/master/topi/recipe/conv/depthwise_conv2d_test.py](https://github.com/dmlc/tvm/blob/master/topi/recipe/conv/depthwise_conv2d_test.py)