Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
[v1.x] Fix gcc 10 build (#20216)
Browse files Browse the repository at this point in the history
* Update elemwise_binary_broadcast_op_basic.cu (#18761)

This fix #18170
refer to the fix: #18357

* Fix undef symbol mxnet::op::ElemwiseBinaryOp::DnsCsrCsrOp (#18357)

Co-authored-by: Balint Cristian <cristian.balint@gmail.com>
  • Loading branch information
mseth10 and cbalint13 committed Apr 27, 2021
1 parent dca422c commit 3d38067
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/operator/tensor/elemwise_binary_broadcast_op_basic.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion src/operator/tensor/elemwise_binary_broadcast_op_basic.cu
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 3d38067

Please sign in to comment.