-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupgrade_models_api_run.py
executable file
·238 lines (199 loc) · 9.8 KB
/
upgrade_models_api_run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed 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.
from __future__ import absolute_import
import importlib
import eventlet
import inspect
import gast
import astor
import argparse
import shutil
import types
import sys
import re
import io
import os
import paddle
from api_upgrade_src.modify_transformer import AddParamTransformer, DelParamTransformer, RenameParamTransformer, RepAttributeTransformer
from api_upgrade_src.upgrade_models_api_utils import get_cur_file_list, load_replace_dict, load_modify_dict, check_dir, load_delete_dict
from api_upgrade_src.upgrade_models_api_utils import print_info, import_module, check_paddle, load_config
from api_upgrade_src.node_operation import insert_import_module, insert_import_module_with_postion
from api_upgrade_src.replace_full_name_transformer import PaddleReplaceFullNameTransformer
from api_upgrade_src.import_transformer import ImportVisitor
from api_upgrade_src.from_count_transformer import FromCountVisitor
from api_upgrade_src.api_counter_visitor import APICountVisitor
BUILD_IN_FUN = dir(__builtins__)
def scan_module_import(root):
"""
scan each py module to build the mapping dict for relacing api full name
Args:
root (gast node)
Returns:
dict(): combination of import_dict and from_import_dict
"""
import_visitor = ImportVisitor(root)
import_visitor.visit(root)
import_dict, from_import_dict = import_visitor.import_dict, import_visitor.from_import_dict
# captured input
captured_dict = dict()
for k, v in import_dict.items():
print("key,value import_dict: ", k, v)
if k and "paddle" in v:
captured_dict.update({k: v})
for k, v in from_import_dict.items():
print("key, v, from_dict: ", k, v)
if k and "paddle" in v:
captured_dict.update({k: v})
return captured_dict
def replace_full_name(root, import_map):
"""
relace api name with api full name, in order for the
upgrade function catching the mapping key
e.g:
from paddle.fluid.dygraph.nn import Conv2D
self.conv1 = nn.Conv2D(1, 6, 5, act='sigmoid')
-->
self.conv1 = paddle.fluid.dygraph.nn.Conv2D(1, 6, 5, act='sigmoid')
"""
replace_transformer = PaddleReplaceFullNameTransformer(root)
replace_transformer.replace(import_map)
return root
def transformer_root(root, modify_dict):
RenameParamTransformer(root).replace(modify_dict)
AddParamTransformer(root).add(modify_dict)
DelParamTransformer(root).delete(modify_dict)
RepAttributeTransformer(root).replace(modify_dict)
return root
def transformer_file(upgrade_config_dict, input, modify_dict=None, is_dir=False):
input = os.path.normpath(input)
(dirpath, filename) = os.path.split(input)
abs_path = os.path.abspath(input)
if filename.startswith("."):
return -1
if is_dir:
out_dir = os.path.join(upgrade_config_dict["output_path"], dirpath)
if not os.path.isdir(out_dir):
os.makedirs(out_dir, 0o777)
out_file = os.path.join(out_dir, filename)
else:
out_file = upgrade_config_dict["output_path"]
out_file = os.path.normpath(out_file)
check_stat = check_paddle(input)
if filename.endswith(".sh") or check_stat != 0:
with open(out_file, 'w') as fw:
print_info("\033[1;34mStart upgrading model %s\033[0m" % (input))
fw.write(open(input, 'r').read())
print_info("\033[1;34mUpgrade Complete. The updated file %s has been written sucess\033[0m" % (out_file))
return -1
cache_file = None
module_name = filename.rstrip(".py")
#TODO basic strategy for avoiding _builtin_ module conflict, which need more general solution
if module_name in BUILD_IN_FUN + ["bert", "word2vec", "yolov3"]:
cache_file = "cache_%s" % filename
cache_dir = os.path.join(dirpath, cache_file)
shutil.copyfile(input, cache_dir)
module_name = cache_file.rstrip(".py")
else:
module_name = filename.rstrip(".py")
try:
mdl_inst = importlib.import_module(module_name, package=dirpath)
except Exception as e:
print_info("\033[1;32m%s, so we use another strategy to dynamically import module\033[0m" % e)
module_name, dirpath = os.path.split(abs_path)
print("-->module name and package name:", module_name, dirpath)
spec = importlib.util.spec_from_file_location(module_name, abs_path)
new_mdl_inst = importlib.util.module_from_spec(spec)
mdl_inst = new_mdl_inst
size = os.path.getsize(input)
print_info("\033[1;34mStart upgrading model %s\033[0m" % (input))
if size != 0:
try:
root = gast.parse(inspect.getsource(mdl_inst))
from_count_visitor = FromCountVisitor(root)
from_count_visitor.visit(root)
future_count = from_count_visitor.from_import_count
print_info("\033[1;34mfuture count is %s \033[0m" % (future_count))
insert_import_module_with_postion(root, mdl_name="paddle", pos=future_count)
import_dict = scan_module_import(root)
root = replace_full_name(root, import_dict)
APICountVisitor(root).count_api_frequency(modify_dict)
root = transformer_root(root, modify_dict)
with open(out_file, 'w', encoding="utf8") as fw:
fw.write(astor.to_source(gast.gast_to_ast(root)))
except Exception as e:
print_info('\033[1;33;41mParser and upgrade %s error!!, please check API and convert it manually, with %s.\033[0m' % (input, e))
return -1
else:
with open(out_file, 'w') as fw:
fw.write(open(filename, 'r').read())
if cache_file is not None:
os.remove(cache_dir)
print_info("\033[1;34mUpgrade Complete. The updated file %s has been written sucess\033[0m" % (out_file))
print_info("")
def main(upgrade_api_args):
if not upgrade_api_args.get("args_file", None):
print("\033[1;34mPlease set config file!! Default path is api_upgrade_src/conf/upgrade.conf\033[0m")
exit(1)
if not upgrade_api_args.get("modify_dict", None):
print("\033[1;34mPlease set modify_dict file!! Default path is api_upgrade_src/dict/modify.dict\033[0m")
exit(1)
upgrade_config_dict = load_config(upgrade_api_args["args_file"])
if not os.path.isfile(upgrade_config_dict["input_path"]):
file_py_list = get_cur_file_list()
else:
file_py_list = upgrade_config_dict["input_path"]
modify_dict = load_modify_dict(upgrade_api_args["modify_dict"])
delete_list = load_delete_dict(upgrade_api_args["delete_dict"])
delete_pattern = "|".join(delete_list)
if isinstance(file_py_list, list):
for path in file_py_list:
content = open(path, 'r').readlines()
match = re.search(delete_pattern, "\n".join(content))
if match:
delete_api = match.group(0)
print_info("\033[1;31m %s API has been deleted, please check file %s, use a replacement policy and convert it manually\033[0m" % (delete_api, path))
else:
try:
eventlet.monkey_patch()
with eventlet.Timeout(30, False):
try:
transformer_file(upgrade_config_dict, path, modify_dict, is_dir=True)
except Exception as e:
print_info("\033[1;31m %s upgrade error, please check file, use a replacement policy and convert it manually, with error: %s. \033[0m" % (path, e))
except:
print_info("\033[1;31m %s upgrade timeout, please check file, use a replacement policy and convert it manually\033[0m" % (path))
elif file_py_list is None:
print_info("\033[1;31mInput error: input must be a directory or a python file\033[0m")
else:
content = open(upgrade_config_dict["input_path"], 'r').readlines()
match = re.search(delete_pattern, "\n".join(content))
if match:
delete_api = match.group(0)
print_info("\033[1;31m %s API has been deleted, please check file %s, use a replacement policy and convert it manually\033[0m" % (delete_api, upgrade_config_dict["input_path"]))
else:
try:
eventlet.monkey_patch()
with eventlet.Timeout(30, False):
try:
transformer_file(upgrade_config_dict, upgrade_config_dict["input_path"], modify_dict, is_dir=False)
except:
print_info("\033[1;31m %s upgrade error, please check file, use a replacement policy and convert it manually\033[0m" % (upgrade_config_dict["input_path"]))
except:
print_info("\033[1;31m %s upgrade timeout, please check file, use a replacement policy and convert it manually\033[0m" % (upgrade_config_dict["input_path"]))
if __name__ == "__main__":
upgrade_api_args = {"modify_dict": "./api_upgrade_src/dict/modify.dict",
"args_file": "./api_upgrade_src/conf/upgrade.conf",
"delete_dict": "./api_upgrade_src/dict/delete.dict",
"counter_dict": "./api_upgrade_src/dict/new_counter.dict"}
main(upgrade_api_args)