forked from KhronosGroup/OpenVX-sample-impl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Build.py
254 lines (226 loc) · 11.4 KB
/
Build.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
#
# Copyright (c) 2011-2017 The Khronos Group Inc.
#
# 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.
#
import os
import sys
import subprocess
import shutil
from optparse import OptionParser
gProjName = "OpenVX"
class os_enum(object):
Linux = 1
Win = 2
Android = 3
@staticmethod
def toString(eVal):
if eVal == os_enum.Linux:
return "Linux"
elif eVal == os_enum.Win:
return "Win"
elif eVal == os_enum.Android:
return "Android"
return ""
class arch_enum(object):
x64 = 1
x32 = 2
@staticmethod
def toString(eVal):
if eVal == arch_enum.x64:
return "x64"
elif eVal == arch_enum.x32:
return "x32"
return ""
class configuration_enum(object):
Release = 1
Debug = 2
@staticmethod
def toString(eVal):
if eVal == configuration_enum.Release:
return "Release"
elif eVal == configuration_enum.Debug:
return "Debug"
return ""
def main():
parser = OptionParser(usage='usage: %prog [options]', description = "Generate build make / sln files")
parser.add_option("--os", dest="os", help="Set the operating system (Linux [For Linux or Cygwin]/ Windows / Android)", default='')
parser.add_option("--arch", dest="arch", help="Set the architecture (32 / 64 bit) [Default 64]", default='64')
parser.add_option("--conf", dest="conf", help="Set the configuration (Release / Debug) [Default Release]", default='Release')
parser.add_option("--c", dest="c_compiler", help="Set the C compiler [Default: the default in system (Optional)]", default='')
parser.add_option("--cpp", dest="cpp_compiler", help="Set the CPP compiler (Default: the default in system (Optional)]", default='')
parser.add_option("--gen", dest="generator", help="Set CMake generator [Default: [WIN]:\"Visual Studio 12\" [Linux]:Cmake default gernerator]", default='')
parser.add_option("--env", dest="env_vars", help="Print supported environment variable [Default False]", default='False')
parser.add_option("--out", dest="out_path", help="Set the path to generated build / install files [Default root directory]", default='')
parser.add_option("--build", dest="build", help="Build and install the targets (change to non 'true' value in order to generate solution / make files only) [Default True]", default='True')
parser.add_option("--rebuild", dest="rebuild", help="Rebuild the targets (Use it when you add source file) [Default False]", default='False')
parser.add_option("--package", dest="package", help="Build packages", default='False')
parser.add_option('--dump_commands', dest='dump_commands', help='Add -DCMAKE_EXPORT_COMPILE_COMMANDS=ON for YCM and other tools', default=False, action='store_true')
# Feature sets
parser.add_option("--conf_vision", dest="conf_vision", help="Add -DOPENVX_CONFORMANCE_VISION=ON to support the Vision conformance feature set", default=False, action='store_true')
parser.add_option("--conf_nn", dest="conf_nn", help="Add -DOPENVX_CONFORMANCE_NEURAL_NETWORKS=ON to support the Neural Networks conformance feature set", default=False, action='store_true')
parser.add_option("--conf_nnef", dest="conf_nnef", help="Add -DOPENVX_CONFORMANCE_NNEF_IMPORT=ON to support the NNEF Import conformance feature set", default=False, action='store_true')
parser.add_option("--enh_vision", dest="enh_vision", help="Add -DOPENVX_USE_ENHANCED_VISION=ON to support the Enhanced Vision feature set", default=False, action='store_true')
# Official extensions
parser.add_option("--ix", dest="ix", help="Add -DOPENVX_USE_IX=ON to support the import-export extension", default=False, action='store_true')
parser.add_option("--nn", dest="nn", help="Add -DOPENVX_USE_NN=ON to support the neural network extension", default=False, action='store_true')
parser.add_option("--pipelining", dest="pipelining", help="Add -DOPENVX_USE_PIPELINING=ON to support the pipelining extension", default=False, action='store_true')
parser.add_option("--streaming", dest="streaming", help="Add -DOPENVX_USE_STREAMING=ON to support the streaming extension", default=False, action='store_true')
parser.add_option("--opencl_interop", dest="opencl_interop", help="Add -DOPENVX_USE_OPENCL_INTEROP=ON to support OpenVX OpenCL InterOp", default=False, action='store_true')
# Provisional extensions
parser.add_option("--tiling", dest="tiling", help="Add -DOPENVX_USE_TILING=ON to support the tiling extension", default=False, action='store_true')
parser.add_option("--s16", dest="s16", help="Add -DOPENVX_USE_S16=ON to have an extended support for S16", default=False, action='store_true')
# Experimental features
parser.add_option("--f16", dest="f16", help="Add -DEXPERIMENTAL_PLATFORM_SUPPORTS_16_FLOAT=ON to support VX_TYPE_FLOAT16", default=False, action='store_true')
parser.add_option("--venum", dest="venum", help="Add -DEXPERIMENTAL_USE_VENUM=ON to build also raspberrypi 3B+ Neon target[Default False]", default=False, action='store_true')
parser.add_option("--opencl", dest="opencl", help="Add -DEXPERIMENTAL_USE_OPENCL=ON to build also OpenCL target [Default False]", default=False, action='store_true')
# C Flags
parser.add_option("--c_flags", dest="c_flags", help="Set C Compiler Flags -DCMAKE_C_FLAGS=" " [Default empty]", default='')
parser.add_option("--cpp_flags", dest="cpp_flags", help="Set CPP Compiler Flags -DCMAKE_CXX_FLAGS=" " [Default empty]", default='')
options, args = parser.parse_args()
if options.env_vars != "False":
print("VX_OPENCL_INCLUDE_PATH - OpenCL include files location")
print("VX_OPENCL_LIB_PATH - OpenCL libraries location")
print("ANDROID_NDK_TOOLCHAIN_ROOT - ANDROID toolchain installation path")
return
operatingSys = os_enum.Linux
if options.os.lower() == "windows":
operatingSys = os_enum.Win
elif options.os.lower() == "android":
operatingSys = os_enum.Android
elif options.os.lower() != "linux":
sys.exit("Error: Please define the OS (Linux / Windows / Android)")
cmake_generator = options.generator
if operatingSys == os_enum.Win and not cmake_generator:
cmake_generator = "Visual Studio 12"
arch = arch_enum.x64
if options.arch == "32":
arch = arch_enum.x32
# set the arch enum to x32 if use --venum/--tiling/--opencl
if options.venum or options.tiling or options.opencl:
arch = arch_enum.x32
conf = configuration_enum.Release
if options.conf.lower() == "debug":
conf = configuration_enum.Debug
userDir = os.getcwd()
cmakeDir = os.path.dirname(os.path.abspath(__file__))
outputDir = cmakeDir
if options.out_path:
outputDir = options.out_path
if not os.path.isdir(outputDir):
sys.exit("Error: " + outputDir + " is not directory")
# chdir to buildRootDir
os.chdir(outputDir)
# create build directory
if not os.path.isdir("build"):
os.makedirs("build")
os.chdir("build")
if not os.path.isdir(os_enum.toString(operatingSys)):
os.makedirs(os_enum.toString(operatingSys))
os.chdir(os_enum.toString(operatingSys))
if not os.path.isdir(arch_enum.toString(arch)):
os.makedirs(arch_enum.toString(arch))
os.chdir(arch_enum.toString(arch))
if operatingSys != os_enum.Win:
if not os.path.isdir(configuration_enum.toString(conf)):
os.makedirs(configuration_enum.toString(conf))
os.chdir(configuration_enum.toString(conf))
# Delete the old build directory in case of rebuild
if options.rebuild.lower() != "false" and len(os.listdir(os.getcwd())) > 0:
rm_dir = os.getcwd()
(head, tail) = os.path.split(os.getcwd())
os.chdir(head)
shutil.rmtree(rm_dir)
os.makedirs(tail)
os.chdir(tail)
install_dir = os.path.join(outputDir, "install", os_enum.toString(operatingSys), arch_enum.toString(arch))
if operatingSys == os_enum.Win:
# Add \\${BUILD_TYPE} in order to support "Debug" \ "Release" build in visual studio
install_dir += '\\${BUILD_TYPE}'
else:
install_dir = os.path.join(install_dir, configuration_enum.toString(conf))
cmake_generator_command = ''
# if the user set generator
if cmake_generator:
if (operatingSys, arch) == (os_enum.Win, arch_enum.x64) and not cmake_generator.endswith('Win64'):
cmake_generator += ' Win64'
cmake_generator_command = '-G "{}"'.format(cmake_generator)
cmd = ['cmake']
cmd += [cmakeDir]
cmd += ['-DCMAKE_BUILD_TYPE=' + configuration_enum.toString(conf)]
cmd += ['-DCMAKE_INSTALL_PREFIX=' + install_dir]
if operatingSys == os_enum.Android:
cmd += ['-DANDROID=1']
if arch == arch_enum.x64:
cmd += ['-DBUILD_X64=1']
cmd += [cmake_generator_command]
if options.c_compiler:
cmd += ['-DCMAKE_C_COMPILER=' + options.c_compiler]
if options.c_flags:
cmd += ['-DCMAKE_C_FLAGS="' + options.c_flags + '"']
if options.cpp_compiler:
cmd += ['-DCMAKE_CXX_COMPILER=' + options.cpp_compiler]
if options.cpp_flags:
cmd += ['-DCMAKE_CXX_FLAGS="' + options.cpp_flags + '"']
if options.package.lower() != 'false':
cmd += ['-DBUILD_PACKAGES=1']
if options.dump_commands:
cmd += ['-DCMAKE_EXPORT_COMPILE_COMMANDS=ON']
if options.conf_vision:
cmd += ['-DOPENVX_CONFORMANCE_VISION=ON']
if options.conf_nn:
cmd += ['-DOPENVX_CONFORMANCE_NEURAL_NETWORKS=ON']
if options.conf_nnef:
cmd += ['-DOPENVX_CONFORMANCE_NNEF_IMPORT=ON']
if options.enh_vision:
cmd += ['-DOPENVX_USE_ENHANCED_VISION=ON']
if options.ix:
cmd += ['-DOPENVX_USE_IX=ON']
if options.nn:
cmd += ['-DOPENVX_USE_NN=ON']
if options.opencl_interop:
cmd += ['-DOPENVX_USE_OPENCL_INTEROP=ON']
# if options.nn16:
# cmd += ['-DOPENVX_USE_NN_16=ON']
if options.pipelining:
cmd += ['-DOPENVX_USE_PIPELINING=ON']
if options.streaming:
cmd += ['-DOPENVX_USE_STREAMING=ON']
if options.tiling:
cmd += ['-DOPENVX_USE_TILING=ON']
if options.s16:
cmd += ['-DOPENVX_USE_S16=ON']
if options.f16:
cmd += ['-DEXPERIMENTAL_PLATFORM_SUPPORTS_16_FLOAT=ON']
if options.venum:
cmd += ['-DEXPERIMENTAL_USE_VENUM=ON']
if options.opencl:
cmd += ['-DEXPERIMENTAL_USE_OPENCL=ON']
cmd = ' '.join(cmd)
print( "" )
print("-- ===== CMake command =====")
print( "" )
print(cmd)
print( "" )
subprocess.Popen(cmd, shell=True).wait()
if options.build.lower() == "true":
if operatingSys == os_enum.Win:
tmp = '"%DEVENV%" {}.sln /build {} /project INSTALL'.format(gProjName, configuration_enum.toString(conf))
print(tmp)
subprocess.Popen(tmp, shell=True).wait()
else:
subprocess.Popen("make install -j", shell=True).wait()
# chdir back to user directory
os.chdir(userDir)
if __name__ == '__main__':
main()