-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathgen_def.py
executable file
·92 lines (81 loc) · 3.05 KB
/
gen_def.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
#!/usr/bin/python3
import argparse
import os
def parse_arguments():
parser = argparse.ArgumentParser()
parser.add_argument("--src_root", required=True, help="input symbol file")
parser.add_argument("--output", required=True, help="output file")
parser.add_argument("--output_source", required=True, help="output file")
parser.add_argument("--version_file", required=True, help="VERSION_NUMBER file")
parser.add_argument("--style", required=True, choices=["gcc", "vc", "xcode"])
parser.add_argument("--config", required=True, nargs="+")
return parser.parse_args()
args = parse_arguments()
print(f"Generating symbol file for {args.config!s}")
with open(args.version_file) as f:
VERSION_STRING = f.read().strip()
print(f"VERSION:{VERSION_STRING}")
symbols = set()
for c in args.config:
file_name = os.path.join(args.src_root, "core", "providers", c, "symbols.txt")
with open(file_name) as file:
for line in file:
line = line.strip() # noqa: PLW2901
if line in symbols:
print("dup symbol: %s", line)
exit(-1)
symbols.add(line)
symbols = sorted(symbols)
symbol_index = 1
with open(args.output, "w") as file:
if args.style == "vc":
file.write("LIBRARY\n")
file.write("EXPORTS\n")
elif args.style == "xcode":
pass # xcode compile don't has any header.
else:
file.write(f"VERS_{VERSION_STRING} {{\n")
file.write(" global:\n")
for symbol in symbols:
if args.style == "vc":
file.write(f" {symbol} @{symbol_index}\n")
elif args.style == "xcode":
file.write(f"_{symbol}\n")
else:
file.write(f" {symbol};\n")
symbol_index += 1
if args.style == "gcc":
file.write(" local:\n")
file.write(" *;\n")
file.write("}; \n")
with open(args.output_source, "w") as file:
file.write("#include <onnxruntime_c_api.h>\n")
for c in args.config:
# WinML adapter should not be exported in platforms other than Windows.
# Exporting OrtGetWinMLAdapter is exported without issues using .def file when compiling for Windows
# so it isn't necessary to include it in generated_source.c
# external symbols are removed, xnnpack ep will be created via the standard ORT API.
# https://github.com/microsoft/onnxruntime/pull/11798
if c not in (
"vitisai",
"winml",
"cuda",
"rocm",
"migraphx",
"qnn",
"snpe",
"xnnpack",
"cann",
"dnnl",
"tensorrt",
"azure",
"webgpu",
"nv_tensorrt_rtx",
):
file.write(f"#include <core/providers/{c}/{c}_provider_factory.h>\n")
file.write("void* GetFunctionEntryByName(const char* name){\n")
for symbol in symbols:
if symbol != "OrtGetWinMLAdapter":
file.write(f'if(strcmp(name,"{symbol}") ==0) return (void*)&{symbol};\n')
file.write("return NULL;\n")
file.write("}\n")