-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.py
140 lines (113 loc) · 4.25 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
# coding=utf-8
# Copyright 2024 The Google Research Authors.
#
# 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.
# Copyright 2022 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 ScaNN to be built from source."""
import argparse
import logging
import os
import subprocess
import sys
_BAZELRC = ".bazelrc"
_BAZEL_QUERY = ".bazel-query.sh"
# Writes variables to bazelrc file
def write_to_bazelrc(line):
with open(_BAZELRC, "a") as f:
f.write(line + "\n")
def write_action_env(var_name, var):
write_to_bazelrc('build --action_env %s="%s"' % (var_name, str(var)))
with open(_BAZEL_QUERY, "a") as f:
f.write('{}="{}" '.format(var_name, var))
def get_input(question):
try:
return input(question)
except EOFError:
return ""
def generate_shared_lib_name(namespec):
"""Converts the linkflag namespec to the full shared library name."""
# Assume Linux for now
return namespec[1][3:]
def create_build_configuration():
"""Main function to create build configuration."""
print()
print("Configuring ScaNN 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()
if args.quiet:
pip_install_options.append("--quiet")
python_path = sys.executable
with open("requirements.txt") as f:
required_packages = f.read().splitlines()
print()
if args.no_deps:
print("> Using pre-installed Tensorflow.")
else:
print("> Installing", required_packages)
install_cmd = [python_path, "-m", "pip", "install"]
install_cmd.extend(pip_install_options)
install_cmd.extend(required_packages)
subprocess.check_call(install_cmd)
if os.path.isfile(_BAZELRC):
os.remove(_BAZELRC)
if os.path.isfile(_BAZEL_QUERY):
os.remove(_BAZEL_QUERY)
logging.disable(logging.WARNING)
import tensorflow.compat.v2 as tf # 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_to_bazelrc("build --spawn_strategy=standalone")
write_to_bazelrc("build --strategy=Genrule=standalone")
write_to_bazelrc("build -c opt")
print()
print("Build configurations successfully written to", _BAZELRC)
print()
with open(_BAZEL_QUERY, "a") as f:
f.write('bazel query "$@"')
if __name__ == "__main__":
create_build_configuration()