From 3ffabb76c9ceaf371816a82d87bbe2cf64432f5c Mon Sep 17 00:00:00 2001 From: Manu Seth Date: Mon, 26 Apr 2021 05:02:38 +0000 Subject: [PATCH 1/2] Update elemwise_binary_broadcast_op_basic.cu (#18761) This fix https://github.com/apache/incubator-mxnet/issues/18170 refer to the fix: https://github.com/apache/incubator-mxnet/pull/18357 --- src/operator/tensor/elemwise_binary_broadcast_op_basic.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/tensor/elemwise_binary_broadcast_op_basic.cu b/src/operator/tensor/elemwise_binary_broadcast_op_basic.cu index aa0850ac5bbf..75ab2ae16f71 100644 --- a/src/operator/tensor/elemwise_binary_broadcast_op_basic.cu +++ b/src/operator/tensor/elemwise_binary_broadcast_op_basic.cu @@ -23,7 +23,7 @@ * \brief GPU Implementation of basic functions for elementwise binary broadcast operator. */ #include "./elemwise_unary_op.h" -#include "./elemwise_binary_op.h" +#include "./elemwise_binary_op-inl.h" #include "./elemwise_binary_broadcast_op.h" namespace mxnet { From 997c9475641893592aa99348d4b989133026f408 Mon Sep 17 00:00:00 2001 From: Balint Cristian Date: Tue, 19 May 2020 03:31:33 +0300 Subject: [PATCH 2/2] Fix undef symbol mxnet::op::ElemwiseBinaryOp::DnsCsrCsrOp (#18357) --- src/operator/tensor/elemwise_binary_broadcast_op_basic.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/operator/tensor/elemwise_binary_broadcast_op_basic.cc b/src/operator/tensor/elemwise_binary_broadcast_op_basic.cc index 6d3ce933af8c..18fe653b1c85 100644 --- a/src/operator/tensor/elemwise_binary_broadcast_op_basic.cc +++ b/src/operator/tensor/elemwise_binary_broadcast_op_basic.cc @@ -23,7 +23,7 @@ * \brief CPU Implementation of basic functions for elementwise binary broadcast operator. */ #include "./elemwise_unary_op.h" -#include "./elemwise_binary_op.h" +#include "./elemwise_binary_op-inl.h" #include "./elemwise_binary_broadcast_op.h" namespace mxnet {