anijain2305 commented on a change in pull request #4949: Conv3D ONNX supprot 
and conv3D_ncdhw x86 schedules
URL: https://github.com/apache/incubator-tvm/pull/4949#discussion_r384806750
 
 

 ##########
 File path: topi/python/topi/x86/conv3d.py
 ##########
 @@ -73,6 +73,45 @@ def conv3d_ndhwc(cfg, data, kernel, strides, padding, 
dilation, out_dtype):
     return _conv3d_ndhwc(cfg, data, kernel, strides, padding, dilation, 
out_dtype)
 
 
[email protected]_topi_compute("conv3d_ncdhw.x86")
+def conv3d_ncdhw(cfg, data, kernel, strides, padding, dilation, out_dtype):
+    """3D convolution forward operator.
+
+    Parameters
+    ----------
+    input : tvm.Tensor
+        5-D input data with shapes:
+        [batch, in_channel, in_depth, in_height, in_width] for NCDHW layout
+        [batch, in_depth, in_height, in_width, in_channel] for NDHWC layout
 
 Review comment:
   Do we need this line as this is NCDHW

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to