From commits-return-2427-archive-asf-public=cust-asf.ponee.io@tvm.apache.org Wed Dec 4 18:09:47 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id D663C180656 for ; Wed, 4 Dec 2019 19:09:46 +0100 (CET) Received: (qmail 48822 invoked by uid 500); 4 Dec 2019 18:09:46 -0000 Mailing-List: contact commits-help@tvm.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tvm.apache.org Delivered-To: mailing list commits@tvm.apache.org Received: (qmail 48813 invoked by uid 99); 4 Dec 2019 18:09:46 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Dec 2019 18:09:46 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1D3978D809; Wed, 4 Dec 2019 18:09:46 +0000 (UTC) Date: Wed, 04 Dec 2019 18:09:45 +0000 To: "commits@tvm.apache.org" Subject: [incubator-tvm] branch master updated (f214364 -> 24713bd) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157548298570.24684.5157861895555403014@gitbox.apache.org> From: tqchen@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-tvm X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: f214364450eac532514661e90e3b7bd171497cf0 X-Git-Newrev: 24713bde423d0eb0a06ac6ee85854dbee033f925 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated 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 f214364 lldb pretty printers for relay (#4453) add 24713bd [CONTRIB] TFLite Runtime (#4439) No new revisions were added by this update. Summary of changes: CMakeLists.txt | 3 + cmake/config.cmake | 9 + .../modules/{Metal.cmake => contrib/TFLite.cmake} | 31 ++-- python/tvm/contrib/tflite_runtime.py | 108 ++++++++++++ src/runtime/contrib/tflite/tflite_runtime.cc | 191 +++++++++++++++++++++ src/runtime/contrib/tflite/tflite_runtime.h | 111 ++++++++++++ tests/python/contrib/test_tflite_runtime.py | 110 ++++++++++++ 7 files changed, 548 insertions(+), 15 deletions(-) copy cmake/modules/{Metal.cmake => contrib/TFLite.cmake} (54%) create mode 100644 python/tvm/contrib/tflite_runtime.py create mode 100644 src/runtime/contrib/tflite/tflite_runtime.cc create mode 100644 src/runtime/contrib/tflite/tflite_runtime.h create mode 100644 tests/python/contrib/test_tflite_runtime.py