nswamy closed pull request #11063: [MXNET-386] NDArray Bug fix URL: https://github.com/apache/incubator-mxnet/pull/11063
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/scala-package/macros/src/main/scala/org/apache/mxnet/NDArrayMacro.scala b/scala-package/macros/src/main/scala/org/apache/mxnet/NDArrayMacro.scala index bbe786f5a0a..56cc3255fa6 100644 --- a/scala-package/macros/src/main/scala/org/apache/mxnet/NDArrayMacro.scala +++ b/scala-package/macros/src/main/scala/org/apache/mxnet/NDArrayMacro.scala @@ -92,9 +92,11 @@ private[mxnet] object NDArrayMacro { val isContrib: Boolean = c.prefix.tree match { case q"new AddNDArrayAPIs($b)" => c.eval[Boolean](c.Expr(b)) } + val newNDArrayFunctions = { - if (isContrib) ndarrayFunctions.filter(_.name.startsWith("_contrib_")) - else ndarrayFunctions.filter(!_.name.startsWith("_contrib_")) + if (isContrib) ndarrayFunctions.filter( + func => func.name.startsWith("_contrib_") || !func.name.startsWith("_")) + else ndarrayFunctions.filterNot(_.name.startsWith("_")) } val functionDefs = newNDArrayFunctions map { ndarrayfunction => ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services