You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by mo...@apache.org on 2022/05/19 11:37:53 UTC

[tvm] branch main updated (ffc0443913 -> 534c38bef3)

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

mousius pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


    from ffc0443913 [Frontend] [PaddlePaddle] Add split operator (#11354)
     add 534c38bef3 [Relay] Support i16, f16 scalars in Relay text (#11224)

No new revisions were added by this update.

Summary of changes:
 src/parser/parser.cc                       |  45 +------
 src/parser/tokenizer.h                     | 104 ++++++++++-----
 src/printer/doc.cc                         |   7 +-
 src/printer/relay_text_printer.cc          |  80 +++++-------
 src/printer/text_printer.h                 |   7 -
 src/support/scalars.cc                     | 202 +++++++++++++++++++++++++++++
 src/support/scalars.h                      |  67 ++++++++++
 tests/cpp/support/scalars_test.cc          |  63 +++++++++
 tests/python/relay/test_ir_parser.py       |  41 +++++-
 tests/python/relay/test_ir_text_printer.py |  37 ++++--
 10 files changed, 505 insertions(+), 148 deletions(-)
 create mode 100644 src/support/scalars.cc
 create mode 100644 src/support/scalars.h
 create mode 100644 tests/cpp/support/scalars_test.cc