You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by tq...@apache.org on 2020/09/17 15:01:50 UTC

[incubator-tvm] branch master updated (8f524f8 -> 74254c3)

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

tqchen pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-tvm.git.


    from 8f524f8  Add PT OD tutorial (#6500)
     add 74254c3  Switch CRC-CCITT libraries (#6499)

No new revisions were added by this update.

Summary of changes:
 3rdparty/libcrc/.gitignore                         |  21 ++
 3rdparty/libcrc/include/checksum.h                 | 116 +++++++++
 3rdparty/libcrc/src/crcccitt.c                     | 119 +++++++++
 3rdparty/libcrc/tab/gentab_ccitt.inc               | 270 +++++++++++++++++++++
 .../TARGET_SDK_11/libraries/crc16/crc16.c          |  55 -----
 .../TARGET_SDK_11/libraries/crc16/crc16.h          |  78 ------
 CMakeLists.txt                                     |   2 +-
 LICENSE                                            |   2 +-
 cmake/modules/StandaloneCrt.cmake                  |   5 +-
 include/tvm/runtime/crt/rpc_common/framing.h       |   3 +-
 licenses/{LICENSE.cma.txt => LICENSE.libcrc.txt}   |  13 +-
 python/tvm/micro/build.py                          |   8 +-
 src/runtime/crt/utvm_rpc_common/framing.cc         |  12 +-
 tests/crt/framing_test.cc                          |   6 +-
 14 files changed, 555 insertions(+), 155 deletions(-)
 create mode 100644 3rdparty/libcrc/.gitignore
 create mode 100644 3rdparty/libcrc/include/checksum.h
 create mode 100644 3rdparty/libcrc/src/crcccitt.c
 create mode 100644 3rdparty/libcrc/tab/gentab_ccitt.inc
 delete mode 100644 3rdparty/mbed-os/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_11/libraries/crc16/crc16.c
 delete mode 100644 3rdparty/mbed-os/targets/TARGET_NORDIC/TARGET_NRF5x/TARGET_SDK_11/libraries/crc16/crc16.h
 copy licenses/{LICENSE.cma.txt => LICENSE.libcrc.txt} (79%)