- Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconfigure.py
290 lines (244 loc) · 8.91 KB
/
configure.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
# Copyright 2023 The TensorFlow 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.
# ==============================================================================
# Usage: configure.py [--quiet] [--no-deps]
#
# Options:
# --quiet Give less output.
# --no-deps Don't install Python dependencies
"""Configures BigQuery ML Utils to be built from source."""
importargparse
importlogging
importos
importsubprocess
importsys
fromtypingimportList
_BAZELRC='.bazelrc'
_BAZEL_QUERY='.bazel-query.sh'
_PYTHON_BIN_PATH='python_bin_path.sh'
# Writes variables to bazelrc file
defwrite_to_bazelrc(line: str):
withopen(_BAZELRC, 'a') asf:
f.write(line+'\n')
defwrite_action_env(var_name: str, var: str):
write_to_bazelrc('build --action_env %s="%s"'% (var_name, str(var)))
withopen(_BAZEL_QUERY, 'a') asf:
f.write('{}="{}" '.format(var_name, var))
defgenerate_shared_lib_name(tf_lflags: List[str]) ->str:
"""Converts the linkflag namespec to the full shared library name.
Args:
tf_lflags: List of linkflag namespec. The first entry specifies the
directory containing the TensorFlow framework library. The second entry
specifies the name of the Tensorflow shared lib (For Linux,
'-l:libtensorflow_framework.so.%s' % version).
Returns:
Name of the Tensorflow shared lib.
"""
# Assume Linux for now
returntf_lflags[1][3:]
defcreate_build_configuration():
"""Main function to create build configuration."""
ifos.path.isfile(_BAZELRC):
os.remove(_BAZELRC)
ifos.path.isfile(_BAZEL_QUERY):
os.remove(_BAZEL_QUERY)
ifos.path.isfile(_PYTHON_BIN_PATH):
os.remove(_PYTHON_BIN_PATH)
environ_cp=dict(os.environ)
setup_python(environ_cp)
print()
print('Configuring BigQuery ML Utils to be built from source...')
pip_install_options= ['--upgrade']
parser=argparse.ArgumentParser()
parser.add_argument('--quiet', action='store_true', help='Give less output.')
parser.add_argument(
'--no-deps',
action='store_true',
help='Do not check and install Python dependencies.',
)
args=parser.parse_args()
ifargs.quiet:
pip_install_options.append('--quiet')
withopen('requirements.txt') asf:
required_packages=f.read().splitlines()
print()
ifargs.no_deps:
print('> Using pre-installed Tensorflow.')
else:
print('> Installing', required_packages)
install_cmd= [environ_cp['PYTHON_BIN_PATH'], '-m', 'pip', 'install']
install_cmd.extend(pip_install_options)
install_cmd.extend(required_packages)
subprocess.check_call(install_cmd)
logging.disable(logging.WARNING)
importtensorflow.compat.v2astf# pylint: disable=g-import-not-at-top
# pylint: disable=invalid-name
_TF_CFLAGS=tf.sysconfig.get_compile_flags()
_TF_LFLAGS=tf.sysconfig.get_link_flags()
_TF_CXX11_ABI_FLAG=tf.sysconfig.CXX11_ABI_FLAG
_TF_SHARED_LIBRARY_NAME=generate_shared_lib_name(_TF_LFLAGS)
_TF_HEADER_DIR=_TF_CFLAGS[0][2:]
_TF_SHARED_LIBRARY_DIR=_TF_LFLAGS[0][2:]
# pylint: enable=invalid-name
write_action_env('TF_HEADER_DIR', _TF_HEADER_DIR)
write_action_env('TF_SHARED_LIBRARY_DIR', _TF_SHARED_LIBRARY_DIR)
write_action_env('TF_SHARED_LIBRARY_NAME', _TF_SHARED_LIBRARY_NAME)
write_action_env('TF_CXX11_ABI_FLAG', _TF_CXX11_ABI_FLAG)
write_action_env('BAZEL_CXXOPTS', '-std=c++17')
write_to_bazelrc('build --spawn_strategy=standalone')
write_to_bazelrc('build --strategy=Genrule=standalone')
write_to_bazelrc('build --experimental_repo_remote_exec')
write_to_bazelrc('build --experimental_cc_shared_library')
write_to_bazelrc('build -c opt')
print()
print('Build configurations successfully written to', _BAZELRC)
print()
withopen(_BAZEL_QUERY, 'a') asf:
f.write('bazel query "$@"')
defsetup_python(environ_cp):
"""Setup python related env variables."""
# Get PYTHON_BIN_PATH, default is the current running python.
default_python_bin_path=sys.executable
ask_python_bin_path= (
'Please specify the location of python. [Enter to use the default: {}]: '
).format(default_python_bin_path)
whileTrue:
python_bin_path=get_from_env_or_user_or_default(
environ_cp,
'PYTHON_BIN_PATH',
ask_python_bin_path,
default_python_bin_path,
)
# Check if the path is valid
ifos.path.isfile(python_bin_path) andos.access(python_bin_path, os.X_OK):
break
elifnotos.path.exists(python_bin_path):
print('Invalid python path: {} cannot be found.'.format(python_bin_path))
else:
print(
'{} is not executable. Is it the python binary?'.format(
python_bin_path
)
)
environ_cp['PYTHON_BIN_PATH'] =''
# Get PYTHON_LIB_PATH
python_lib_path=environ_cp.get('PYTHON_LIB_PATH')
ifnotpython_lib_path:
python_lib_paths=get_python_path(environ_cp, python_bin_path)
ifenviron_cp.get('USE_DEFAULT_PYTHON_LIB_PATH') =='1':
python_lib_path=python_lib_paths[0]
else:
print(
'Found possible Python library paths:\n %s'
%'\n '.join(python_lib_paths)
)
default_python_lib_path=python_lib_paths[0]
python_lib_path=get_input(
'Please input the desired Python library path to use. '
'Enter to use the default: [{}]\n'.format(python_lib_paths[0])
)
ifnotpython_lib_path:
python_lib_path=default_python_lib_path
environ_cp['PYTHON_LIB_PATH'] =python_lib_path
# Set-up env variables used by python_configure.bzl
write_action_env('PYTHON_BIN_PATH', python_bin_path)
write_action_env('PYTHON_LIB_PATH', python_lib_path)
write_to_bazelrc('build --python_path="{}"'.format(python_bin_path))
environ_cp['PYTHON_BIN_PATH'] =python_bin_path
# If choosen python_lib_path is from a path specified in the PYTHONPATH
# variable, need to tell bazel to include PYTHONPATH
ifenviron_cp.get('PYTHONPATH'):
python_paths=environ_cp.get('PYTHONPATH').split(':')
ifpython_lib_pathinpython_paths:
write_action_env('PYTHONPATH', environ_cp.get('PYTHONPATH'))
# Write tools/python_bin_path.sh
withopen(_PYTHON_BIN_PATH, 'a') asf:
f.write('export PYTHON_BIN_PATH="{}"'.format(python_bin_path))
defget_from_env_or_user_or_default(
environ_cp, var_name, ask_for_var, var_default
):
"""Get var_name either from env, or user or default.
If var_name has been set as environment variable, use the preset value, else
ask for user input. If no input is provided, the default is used.
Args:
environ_cp: copy of the os.environ.
var_name: string for name of environment variable, e.g. "TF_NEED_CUDA".
ask_for_var: string for how to ask for user input.
var_default: default value string.
Returns:
string value for var_name
"""
var=environ_cp.get(var_name)
ifnotvar:
var=get_input(ask_for_var)
print('\n')
ifnotvar:
var=var_default
returnvar
defget_python_path(environ_cp, python_bin_path):
"""Get the python site package paths."""
python_paths= []
ifenviron_cp.get('PYTHONPATH'):
python_paths=environ_cp.get('PYTHONPATH').split(':')
try:
stderr=open(os.devnull, 'wb')
library_paths=run_shell(
[
python_bin_path,
'-c',
'import site; print("\\n".join(site.getsitepackages()))',
],
stderr=stderr,
).split('\n')
exceptsubprocess.CalledProcessError:
library_paths= [
run_shell([
python_bin_path,
'-c',
(
'from distutils.sysconfig import get_python_lib;'
'print(get_python_lib())'
),
])
]
all_paths=set(python_paths+library_paths)
# Sort set so order is deterministic
all_paths=sorted(all_paths)
paths= []
forpathinall_paths:
ifos.path.isdir(path):
paths.append(path)
returnpaths
defget_input(question):
try:
try:
answer=raw_input(question)
exceptNameError:
answer=input(question) # pylint: disable=bad-builtin
exceptEOFError:
answer=''
returnanswer
defrun_shell(cmd, allow_non_zero=False, stderr=None):
ifstderrisNone:
stderr=sys.stdout
ifallow_non_zero:
try:
output=subprocess.check_output(cmd, stderr=stderr)
exceptsubprocess.CalledProcessErrorase:
output=e.output
else:
output=subprocess.check_output(cmd, stderr=stderr)
returnoutput.decode('UTF-8').strip()
if__name__=='__main__':
create_build_configuration()