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 f677af0 [topi][relay] Add operation gather to relay. (#5716)
add afaa9e4 [CODEGEN][CONTRIB] CoreML codegen (#5634)
No new revisions were added by this update.
Summary of changes:
apps/ios_rpc/tests/ios_rpc_mobilenet.py | 171 ++++++++++++++++
python/tvm/contrib/coreml_runtime.py | 10 +-
.../tvm/contrib/{debugger => target}/__init__.py | 2 +
python/tvm/contrib/target/coreml.py | 226 +++++++++++++++++++++
python/tvm/contrib/xcode.py | 18 +-
python/tvm/relay/op/contrib/__init__.py | 1 +
.../relay/{qnn/op/op.py => op/contrib/coreml.py} | 36 ++--
src/runtime/contrib/coreml/coreml_runtime.h | 87 +++++---
src/runtime/contrib/coreml/coreml_runtime.mm | 205 ++++++++++++++-----
tests/python/contrib/test_coreml_codegen.py | 139 +++++++++++++
tests/python/contrib/test_coreml_runtime.py | 18 +-
11 files changed, 802 insertions(+), 111 deletions(-)
create mode 100644 apps/ios_rpc/tests/ios_rpc_mobilenet.py
copy python/tvm/contrib/{debugger => target}/__init__.py (94%)
create mode 100644 python/tvm/contrib/target/coreml.py
copy python/tvm/relay/{qnn/op/op.py => op/contrib/coreml.py} (50%)
create mode 100644 tests/python/contrib/test_coreml_codegen.py