optima2005 commented on a change in pull request #4551: [Relay] add max_pool3d 
in relay and TF converter
URL: https://github.com/apache/incubator-tvm/pull/4551#discussion_r360630075
 
 

 ##########
 File path: tests/python/relay/test_op_level2.py
 ##########
 @@ -532,6 +532,72 @@ def test_pool2d():
     _test_global_pool2d(relay.nn.global_avg_pool2d, np.mean)
 
 
+def test_pool3d():
+
+    def _test_pool3d_baseline(np_data, in_shape, kernal, strides, padding,
+                              out_shape, pool_type, count_include_pad=True):
+        # default layout is "NCDHW"
+        dtype = "float32"
+        n, ic, id, ih, iw = in_shape
+        kd, kw, kh = kernal
+        sd, sw, sh = strides
 
 Review comment:
   kd, dh, kw
   sd, sh, sw

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