-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Relay to ONNX converter * Relay to ONNX op test cases * Relay to ONNX end to end model test cases * Add test cases to jenkins * CI CD fixes * ONNX codegen * ONNX codegen * ONNX codegen * onnx testcases * ONNX codegen * test onnx * ONNX codegen * shape calculation * move onnx codegen to contrib/target * review comments * ONNX target use visitor * onnx fixes * lint fixes * doc string changes * review comments * review comment fixes * review comment * pytest skip * rename type to node type * test * Fix for constantshpae, add exp, fix for metadatamodule * Fix cpplint * change error tol values
- Loading branch information
1 parent
c424da5
commit 5c73efe
Showing
8 changed files
with
1,644 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 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. | ||
|
||
if(USE_TARGET_ONNX) | ||
message(STATUS "Build with contrib.codegen_onnx") | ||
file(GLOB ONNX_CONTRIB_SRC src/runtime/contrib/onnx/onnx_module.cc) | ||
list(APPEND RUNTIME_SRCS ${ONNX_CONTRIB_SRC}) | ||
endif(USE_TARGET_ONNX) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.