This is an automated email from the ASF dual-hosted git repository.

reminisce pushed a commit to branch numpy
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/numpy by this push:
     new 29281cd  [Numpy] fix 
test_operator_gpu.test_upsampling_bilinear_with_type (#14557)
29281cd is described below

commit 29281cd71535c7b356cb9da6752a093b9e588f66
Author: Junru Shao <junrushao1...@gmail.com>
AuthorDate: Wed Apr 3 20:20:07 2019 -0700

    [Numpy] fix test_operator_gpu.test_upsampling_bilinear_with_type (#14557)
    
    * Fix test_operator_gpu.test_upsampling_bilinear_with_type
    
    * Address comments
---
 src/operator/nn/deconvolution-inl.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/operator/nn/deconvolution-inl.h 
b/src/operator/nn/deconvolution-inl.h
index 5f3137f..e82a073 100644
--- a/src/operator/nn/deconvolution-inl.h
+++ b/src/operator/nn/deconvolution-inl.h
@@ -143,9 +143,9 @@ struct DeconvolutionParam : public 
dmlc::Parameter<DeconvolutionParam> {
         }
       }
     } else {
-      for (size_t i = 0; i < ndim; i++) {
-        o_pad[i] = pad[i];
-        o_adj[i] = adj[i];
+      for (int i = 0; i < (int) ndim; i++) {
+        o_pad[i] = i < pad.ndim() ? pad[i] : 0;
+        o_adj[i] = i < adj.ndim() ? adj[i] : 0;
       }
     }
   }

Reply via email to