From dev-return-3275-archive-asf-public=cust-asf.ponee.io@singa.incubator.apache.org Tue Aug 13 01:23:13 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 111ED180637 for ; Tue, 13 Aug 2019 03:23:12 +0200 (CEST) Received: (qmail 91256 invoked by uid 500); 13 Aug 2019 01:23:12 -0000 Mailing-List: contact dev-help@singa.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@singa.incubator.apache.org Delivered-To: mailing list dev@singa.incubator.apache.org Received: (qmail 91245 invoked by uid 99); 13 Aug 2019 01:23:12 -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; Tue, 13 Aug 2019 01:23:12 +0000 From: GitBox To: dev@singa.apache.org Subject: [GitHub] [incubator-singa] nudles commented on a change in pull request #504: SINGA-481 Reconsturct soonx Message-ID: <156565939226.1505.8336315346176028857.gitbox@gitbox.apache.org> Date: Tue, 13 Aug 2019 01:23:12 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit nudles commented on a change in pull request #504: SINGA-481 Reconsturct soonx URL: https://github.com/apache/incubator-singa/pull/504#discussion_r313189915 ########## File path: test/python/test_onnx.py ########## @@ -0,0 +1,202 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ============================================================================= + +import unittest +from builtins import str + +from singa import tensor +from singa import singa_wrap as singa +from singa import autograd +from singa import sonnx + +import onnx +from onnx import (defs, checker, helper, numpy_helper, mapping, + ModelProto, GraphProto, NodeProto, AttributeProto, TensorProto, OperatorSetIdProto) +from onnx.helper import make_tensor, make_tensor_value_info, make_node, make_graph + +from cuda_helper import gpu_dev, cpu_dev + +import numpy as np + +autograd.training = True + + +class TestPythonOnnxFrontend(unittest.TestCase): + Review comment: Can we use onnx's test code? https://github.com/onnx/onnx/tree/master/onnx/backend/test/case ---------------------------------------------------------------- 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 With regards, Apache Git Services