You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@singa.apache.org by wa...@apache.org on 2019/12/19 04:05:14 UTC

[singa] branch master updated (695d9da -> 215ce6f)

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

wangwei pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/singa.git.


    from 695d9da  Merge pull request #566 from chrishkchris/SINGA-487_6
     new 93875e7  init test onnx backend
     new e880c44  add conv2d test cases
     new 84d1e4b  add avg pooling test cases
     new 192ba72  add avg pooling test cases
     new 7c25a8f  add max pooling test cases
     new 7b3ec38  add batchnorm test cases
     new 69337e4  add concat test cases
     new 158ce69  add flatten
     new 3ea44c6  add add+sum test cases
     new 3703b28  add relu/sigmoid/softmax/matmul test cases
     new 0ef0f63  add cos/cosh/sin/sinh/tan/tanh/acos/acosh...
     new a9c3a97  fix reshape/flatten
     new 5ba715e  commit
     new 79aac67  merge with master
     new 4871569  fix confict
     new 389cf69  add selu
     new 4eb24b1  add elu
     new dca67e3  add equal
     new aa048f6  add less
     new 64dd3b4  add sign
     new 06c5ff6  add sub/div
     new e356e61  add sqrt/log
     new 13215de  add greater
     new 87eed96  add hardsigmoid
     new 4c941f4  add identity/softplus
     new ded8bd8  add softsign/mean
     new 044e844  add pow
     new 381c83d  add PRelu/Mul/Transpose/Max...
     new 7599ca7  fix batchnorm
     new e708af5  recheck test cases
     new 61f55f5  reshape supports zero_dim
     new 4f08c0d  fix clip
     new 316f752  add tiny_yolo
     new 74ec660  add mobile net example
     new 657dc18  add vgg, resnet
     new c358373  Merge branch 'master' into test_onnx_backend
     new 6b84126  Merge branch 'SINGA-494' into test_onnx_backend
     new e977220  merge & fix batchnorm
     new e9dafe2  fix shape inference
     new 7576a96  re-run test cases
     new 57e5dc4  Merge branch 'master' into test_onnx_backend
     new dea9c6f  fix batchnorm and reshape
     new 3699041  fix sofmax
     new b766b44  rm onnx examples(to another pr)
     new 215ce6f  Merge pull request #534 from joddiy/test_onnx_backend

The 1564 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:
 examples/onnx/backend.py         |   46 -
 examples/onnx/cnn.py             |  196 ----
 examples/onnx/mlp.py             |  164 ---
 examples/onnx/mnist.py           |  319 ------
 python/singa/autograd.py         |   87 +-
 python/singa/sonnx.py            |  801 +++++++++++---
 test/python/test_onnx.py         |  764 +++++++++++++-
 test/python/test_onnx_backend.py | 2146 ++++++++++++++++++++++++++++++++++++++
 8 files changed, 3622 insertions(+), 901 deletions(-)
 delete mode 100644 examples/onnx/backend.py
 delete mode 100755 examples/onnx/cnn.py
 delete mode 100644 examples/onnx/mlp.py
 delete mode 100644 examples/onnx/mnist.py
 create mode 100644 test/python/test_onnx_backend.py