You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by GitBox <gi...@apache.org> on 2019/11/23 05:33:35 UTC

[GitHub] [incubator-tvm] optima2005 commented on a change in pull request #4400: implement conv3d op

optima2005 commented on a change in pull request #4400: implement conv3d op
URL: https://github.com/apache/incubator-tvm/pull/4400#discussion_r349859513
 
 

 ##########
 File path: python/tvm/contrib/cudnn.py
 ##########
 @@ -384,3 +384,288 @@ def conv2d_forward(x,
             ins[0],
             ins[1],
             outs[0]), name="y")
+
+
+def conv3d_w_shape(in_channel,
+                   out_channel,
+                   filter_d,
+                   filter_h,
+                   filter_w):
+    """Get weight shape for a 2D convolution
+
+    Parameters
+    ----------
+    in_channel: int
+        input channel
+    out_channel: int
+        output channel
+    filter_h: int
+        filter height
+    filter_w: int
+        filter width
+
 
 Review comment:
   will fix next commit

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services