-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtensorflow.py
77 lines (66 loc) · 2.54 KB
/
tensorflow.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
from faasmtools.build import get_faasm_build_env_dict
from invoke import task
from os import cpu_count
from os.path import exists, isfile, join
from subprocess import check_output, run
from shutil import copytree, rmtree
from tasks.env import EXAMPLES_DIR
@task(default=True)
def lite(ctx, clean=False):
"""
Compile and install Tensorflow Lite lib
"""
tf_dir = join(EXAMPLES_DIR, "tensorflow")
tf_lite_dir = join(tf_dir, "tensorflow", "lite")
tf_make_dir = join(tf_lite_dir, "tools", "make")
download_check_dir = join(tf_make_dir, "downloads", "absl")
if not exists(download_check_dir):
download_script = join(tf_make_dir, "download_dependencies.sh")
check_output(download_script, shell=True)
cores = cpu_count()
make_cores = int(cores) - 1
build_env = get_faasm_build_env_dict(is_threads=True)
make_target = "lib"
make_cmd = [
"make -j {}".format(make_cores),
"CC={}".format(build_env["FAASM_WASM_CC"]),
"CXX={}".format(build_env["FAASM_WASM_CXX"]),
"AR={}".format(build_env["FAASM_WASM_AR"]),
"RANLIB={}".format(build_env["FAASM_WASM_RANLIB"]),
'CFLAGS="--target={} {}"'.format(
build_env["FAASM_WASM_TRIPLE"], build_env["FAASM_WASM_CFLAGS"]
),
'CXXFLAGS="--target={} {}"'.format(
build_env["FAASM_WASM_TRIPLE"], build_env["FAASM_WASM_CXXFLAGS"]
),
"MINIMAL_SRCS=",
"TARGET={}".format(build_env["FAASM_WASM_TRIPLE"]),
"BUILD_WITH_MMAP=false",
'-C "{}"'.format(tf_dir),
"-f tensorflow/lite/tools/make/Makefile",
]
make_cmd.append(make_target)
clean_dir = join(
tf_make_dir, "gen", "{}_x86_64".format(build_env["FAASM_WASM_TRIPLE"])
)
if clean and exists(clean_dir):
rmtree(clean_dir)
make_cmd = " ".join(make_cmd)
print(make_cmd)
run(make_cmd, shell=True, check=True, cwd=tf_lite_dir, env=build_env)
# Install static library
tf_lib_dir = join(clean_dir, "lib")
cp_cmd = "cp {}/libtensorflow-lite.a {}/libtensorflow-lite.a".format(
tf_lib_dir, build_env["FAASM_WASM_LIB_INSTALL_DIR"]
)
print(cp_cmd)
run(cp_cmd, shell=True, check=True)
# Install header files
header_install_dir = join(
build_env["FAASM_WASM_HEADER_INSTALL_DIR"], "tensorflow"
)
if exists(header_install_dir):
rmtree(header_install_dir)
def ignore_func(d, files):
return [f for f in files if isfile(join(d, f)) and f[-2:] != ".h"]
copytree(tf_dir, header_install_dir, ignore=ignore_func)