forked from dangmanhtruong1995/monolith
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.bazelrc
97 lines (80 loc) · 3.6 KB
/
.bazelrc
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
# Copied from https://github.com/tensorflow/serving/blob/master/.bazelrc
# Some entries are commented to fit to ByteDance environment
# Options used to build with CUDA.
build:cuda --repo_env TF_NEED_CUDA=1
build:cuda --crosstool_top=@local_config_cuda//crosstool:toolchain
build:cuda --define=using_cuda=true --define=using_cuda_nvcc=true
# build:cuda --action_env=TF_CUDA_COMPUTE_CAPABILITIES="sm_50,sm_60,sm_70,sm_75,compute_80"
# Just compile for V100 and T4 and A100 for development:
build:cuda --action_env=TF_CUDA_COMPUTE_CAPABILITIES="sm_70,sm_75,compute_80"
# Explicitly specify "local" here to avoid sandboxed for local.
# Use ./configure to create .monolith_configure.bazelrc to enable build from remote buildfarm.
build --spawn_strategy=local
build --define=grpc_no_ares=true
# Sets the default Apple platform to macOS.
build --apple_platform_type=macos
build -c opt
# LLVM, MLIR and TF require C++14.
build --cxxopt=-std=c++14
build --host_cxxopt=-std=c++14
# Adding "--cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0" creates parity with TF
# compilation options. It also addresses memory use due to
# copy-on-write semantics of std::strings of the older ABI.
build --cxxopt=-D_GLIBCXX_USE_CXX11_ABI=0
build --experimental_repo_remote_exec
### end ###
fetch --experimental_repo_remote_exec
query --experimental_repo_remote_exec
build --genrule_strategy=local
# Make it default to TF2
build --define=tf_api_version=2
build --action_env=TF2_BEHAVIOR=1
# If this is not set, lib so won't have classes registered in
# libtensorflow_fraomework.so, thus many registrations might fail like HDFS.
build --define=framework_shared_object=true
# Some optimization config.
build --define=open_source_build=true
build --define=use_fast_cpp_protos=true
build --define=allow_oversize_protos=true
build --define=with_xla_support=true
# Some native optimizations
build --copt=-O3
build --copt=-mavx
build --copt=-mavx2
build --copt=-mfma
build --copt=-msse4.1
build --copt=-msse4.2
# TF currently relies on some bazel deprecated behavior, removes theses options
# once TF fixes bugs.
build --noincompatible_remove_legacy_whole_archive --noincompatible_prohibit_aapt1
# Import user configured options (e.g., like building cluster)
try-import %workspace%/.monolith_configure.bazelrc
# Import bazel 4 compatible options
try-import %workspace%/.bazel4-compatible.bazelrc
# Build Tf Serving release binary
build:serving --copt=-mavx
build:serving --copt=-msse4.2
build:serving --define=framework_shared_object=false
build:serving --workspace_status_command=/proc/self/cwd/monolith/tools/gen_status_stamp.sh
# "-U_GLIBCXX_USE_CXX11_ABI" is added to disable "-D_GLIBCXX_USE_CXX11_ABI=0" in
# global build --cxxopt, which will cause trouble when building monolith_serving.
build:serving --cxxopt=-U_GLIBCXX_USE_CXX11_ABI
build:serving --cxxopt=-UE
build:serving --cxxopt="-faligned-new"
build:serving --cxxopt="-Wno-unused-but-set-parameter"
build:serving --cxxopt="-Wno-deprecated-declarations"
build:serving --cxxopt="-Wno-ignored-attributes"
build:serving --cxxopt="-fpermissive"
build:serving --cxxopt="-Wno-unused-parameter"
build:serving --cxxopt="-Wno-deprecated-declarations"
# Build Tf Serving release binary
build:serving_gpu --config=cuda
build:serving_gpu --define=framework_shared_object=false
build:serving_gpu --cxxopt=-U_GLIBCXX_USE_CXX11_ABI
build:serving_gpu --cxxopt=-UE
build:serving_gpu --cxxopt="-faligned-new"
build:serving_gpu --cxxopt="-Wno-unused-but-set-parameter"
build:serving_gpu --cxxopt="-Wno-deprecated-declarations"
build:serving_gpu --cxxopt="-Wno-ignored-attributes"
build:serving_gpu --cxxopt="-fpermissive"
build:serving_gpu --cxxopt="-Wno-unused-parameter"