This is an automated email from the ASF dual-hosted git repository.
cjolivier01 pushed a change to branch cython
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.
omit ffde373 [WIP] Test CI build (#10111)
omit 60dd961 cython timing tests
omit bf29e39 cython timing tests
omit b937244 Ignore cything built files
omit 48c15e8 cython timing tests
omit 620c991 test calling printf in C++ and C++ class
omit fe814f7 cython timing tests
omit 6b51a5b cython timing tests
omit 4b57c36 cython timing tests
omit 9a6cfcc cython timing tests
omit 2fee93e Refreshed branch cython
add f7fa49e Compile MKLDNN in Mac. (#10115)
add 4ad37d8 Added test_metric_perf.py as a separate file (#9705)
add b87c63d Adjust MKLDNN compile flags order to resolve some corner case
(#9936)
add 24a8b78 Fix multi worker (#10096)
add cf188b4 implement DepthwiseConv2dBackwardFilterKernel from tensorflow
codebase, which is over 5x faster (#10098)
add 574f469 support for any datatype for correlation operator (#10125)
add b95ae7c [MXNET-50] Scala Inference APIs (#9678)
add 50c694d Update PR Template (#9919)
add 67af47c [Doc/Test Fix] Fix documentation of embedding layer + Fix
LayerNorm Test (#10136)
add 6e1f58d Update rnn_layer.py (#10153)
new 1837af2 Refreshed branch cython
new 12abfe5 cython timing tests
new 00b7d5d cython timing tests
new e495ded cython timing tests
new 69bb922 cython timing tests
new 3e44107 test calling printf in C++ and C++ class
new 246ac0b cython timing tests
new 1966898 Ignore cything built files
new d69bc50 cython timing tests
new 136f803 cython timing tests
new 8d92fc9 [WIP] Test CI build (#10111)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (ffde373)
\
N -- N -- N refs/heads/cython (8d92fc9)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 11 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.github/PULL_REQUEST_TEMPLATE.md | 4 +-
3rdparty/mkldnn | 2 +-
Makefile | 31 ++--
prepare_mkldnn.sh | 19 +-
python/mxnet/gluon/data/dataloader.py | 119 ++++++++----
python/mxnet/gluon/nn/basic_layers.py | 6 +-
python/mxnet/gluon/rnn/rnn_layer.py | 2 +-
.../core/src/main/scala/ml/dmlc/mxnet/IO.scala | 4 +
.../src/test/scala/ml/dmlc/mxnet/ModuleSuite.scala | 31 ++--
scala-package/examples/pom.xml | 6 +
scala-package/infer/pom.xml | 84 +++++++++
.../scala/ml/dmlc/mxnet/infer/Classifier.scala | 170 +++++++++++++++++
.../scala/ml/dmlc/mxnet/infer/MXNetHandler.scala | 103 +++++++++++
.../main/scala/ml/dmlc/mxnet/infer/Predictor.scala | 198 ++++++++++++++++++++
.../main/scala/ml/dmlc/mxnet/infer/package.scala} | 9 +-
.../src/test/resources/log4j.properties | 0
.../ml/dmlc/mxnet/infer/ClassifierSuite.scala | 205 +++++++++++++++++++++
.../scala/ml/dmlc/mxnet/infer/PredictorSuite.scala | 114 ++++++++++++
scala-package/pom.xml | 1 +
src/operator/correlation-inl.h | 58 ++++--
src/operator/correlation.cc | 13 +-
src/operator/correlation.cu | 8 +-
src/operator/nn/depthwise_convolution-inl.h | 85 +--------
src/operator/nn/depthwise_convolution_tf.cuh | 90 +++++++++
src/storage/cpu_shared_storage_manager.h | 1 +
tests/python/unittest/test_metric_perf.py | 124 +++++++++++++
tests/python/unittest/test_operator.py | 45 ++---
27 files changed, 1332 insertions(+), 200 deletions(-)
create mode 100644 scala-package/infer/pom.xml
create mode 100644
scala-package/infer/src/main/scala/ml/dmlc/mxnet/infer/Classifier.scala
create mode 100644
scala-package/infer/src/main/scala/ml/dmlc/mxnet/infer/MXNetHandler.scala
create mode 100644
scala-package/infer/src/main/scala/ml/dmlc/mxnet/infer/Predictor.scala
copy scala-package/{core/src/main/scala/ml/dmlc/mxnet/contrib/Symbol.scala =>
infer/src/main/scala/ml/dmlc/mxnet/infer/package.scala} (84%)
copy scala-package/{core => infer}/src/test/resources/log4j.properties (100%)
create mode 100644
scala-package/infer/src/test/scala/ml/dmlc/mxnet/infer/ClassifierSuite.scala
create mode 100644
scala-package/infer/src/test/scala/ml/dmlc/mxnet/infer/PredictorSuite.scala
create mode 100644 tests/python/unittest/test_metric_perf.py
--
To stop receiving notification emails like this one, please contact
[email protected].