This repository has been archived by the owner on Nov 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
[v1.x] Tool to help update/restore onnx support #19876
Open
Zha0q1
wants to merge
4
commits into
apache:v1.x
Choose a base branch
from
Zha0q1:onnx_update_util
base: v1.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
a933f4b
add tool to update/restore onnx support
Zha0q1 4a9ac8c
Merge branch 'v1.x' of github.com:apache/incubator-mxnet into onnx_up…
Zha0q1 3db82e4
Merge branch 'v1.x' of github.com:apache/incubator-mxnet into onnx_up…
Zha0q1 d10b769
add license
Zha0q1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
#!/usr/bin/env python3 | ||
# -*- coding: utf-8 -*- | ||
# 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 mxnet | ||
import os | ||
import logging | ||
import argparse | ||
|
||
def update_onnx(branch='v1.x'): | ||
# Detect MXNet | ||
print('Detected MXNet version: %s' % mxnet.__version__) | ||
mx_path = os.path.abspath(mxnet.__file__) | ||
mx_path = mx_path[:mx_path.rfind('/')] | ||
onnx_path = mx_path + '/contrib/onnx/' | ||
if os.path.isdir(onnx_path): | ||
print('Found ONNX path: %s' % onnx_path) | ||
else: | ||
logging.error('ONNX path not found. %s does not exist' % onnx_path) | ||
|
||
# Backup the current onnx dir | ||
backup_path = onnx_path + 'backup' | ||
os.system('mkdir %s' % backup_path) | ||
os.system('mv -v %s/* %s' % (onnx_path, backup_path)) | ||
|
||
# Clone the latest repo and copy the onnx dir | ||
clone_path = './mxnet_repo_tmp' | ||
os.system('mkdir %s' % clone_path) | ||
cwd = os.getcwd() | ||
os.chdir(clone_path) | ||
os.system('git clone https://github.com/apache/incubator-mxnet mxnet') | ||
os.chdir('./mxnet') | ||
os.system('git checkout %s' % branch) | ||
os.system('cp -r python/mxnet/contrib/onnx/* %s/' % onnx_path) | ||
os.chdir(cwd) | ||
os.system('rm -rf %s' %clone_path) | ||
print('Done') | ||
|
||
|
||
def restore_onnx(): | ||
# Detect MXNet | ||
print('Detected MXNet version: %s' % mxnet.__version__) | ||
mx_path = os.path.abspath(mxnet.__file__) | ||
mx_path = mx_path[:mx_path.rfind('/')] | ||
onnx_path = mx_path + '/contrib/onnx' | ||
backup_path = onnx_path + '/backup' | ||
if os.path.isdir(backup_path): | ||
print('Found ONNX path: %s' % onnx_path) | ||
print('Found ONNX backup path: %s' % backup_path) | ||
else: | ||
logging.error('ONNX backup path not found. %s does not exist' % backup_path) | ||
|
||
# Restore backup | ||
os.chdir(onnx_path) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For this to work on windows, could you just check if the backup path exists and move it back then? The find/cp/rm commands won't work under windows. |
||
os.system('find . -mindepth 1 -maxdepth 1 ! -name backup -exec rm -r "{}" \;') | ||
os.system('cp -r ./backup/* .') | ||
os.system('rm -rf backup') | ||
print('Done') | ||
|
||
|
||
parser = argparse.ArgumentParser(description='Update/Restore ONNX dir with the latest changes ' | ||
'on GitHub') | ||
parser.add_argument('--branch', default='v1.x', | ||
help='which branch to checkout') | ||
parser.add_argument('--restore', action='store_true', help='restore the backup files') | ||
args = parser.parse_args() | ||
|
||
if args.restore: | ||
print('Restoring') | ||
restore_onnx() | ||
else: | ||
print('Updating to changes in branch %s' % args.branch) | ||
update_onnx(args.branch) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might want to use os.path.join(mx_path, "..", "contrib", "onnx"), so this will work in windows as well.