From commits-return-12186-archive-asf-public=cust-asf.ponee.io@tvm.apache.org Fri Apr 24 17:25:27 2020 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 3BBAE18062C for ; Fri, 24 Apr 2020 19:25:27 +0200 (CEST) Received: (qmail 92849 invoked by uid 500); 24 Apr 2020 17:25:26 -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 92840 invoked by uid 99); 24 Apr 2020 17:25:26 -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; Fri, 24 Apr 2020 17:25:26 +0000 From: =?utf-8?q?GitBox?= To: commits@tvm.apache.org Subject: =?utf-8?q?=5BGitHub=5D_=5Bincubator-tvm=5D_maheshambule_commented_on_a_chang?= =?utf-8?q?e_in_pull_request_=235330=3A_=5BFrontend=5D=5BTFLite=5D_support_f?= =?utf-8?q?or_FILL_and_SPLIT=5FV_operators?= Message-ID: <158774912652.3807.2491057666268408937.asfpy@gitbox.apache.org> Date: Fri, 24 Apr 2020 17:25:26 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit References: In-Reply-To: maheshambule commented on a change in pull request #5330: URL: https://github.com/apache/incubator-tvm/pull/5330#discussion_r414740666 ########## File path: python/tvm/relay/frontend/tflite.py ########## @@ -1067,6 +1069,27 @@ def convert_zeros_like(self, op): return out + def convert_fill(self, op): + """Convert TFLite FILL""" + try: + from tflite.Operator import Operator + except ImportError: + raise ImportError("The tflite package must be installed") + Review comment: Merged master and removed. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: users@infra.apache.org