-
Notifications
You must be signed in to change notification settings - Fork 0
/
yacl.bzl
119 lines (105 loc) · 3.2 KB
/
yacl.bzl
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
# Copyright 2023 Ant Group Co., Ltd.
#
# 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.
"""
wrapper bazel cc_xx to modify flags.
"""
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library", "cc_test")
load("@rules_foreign_cc//foreign_cc:defs.bzl", "cmake", "configure_make")
WARNING_FLAGS = [
"-Wall",
"-Wextra",
"-Werror",
]
# set `SPDLOG_ACTIVE_LEVEL=1(SPDLOG_LEVEL_DEBUG)` to enable debug level log
DEBUG_FLAGS = ["-DSPDLOG_ACTIVE_LEVEL=1", "-O0", "-g"]
RELEASE_FLAGS = ["-O2"]
FAST_FLAGS = ["-O1"]
AES_COPT_FLAGS = select({
"@platforms//cpu:aarch64": ["-O3"],
"//conditions:default": [
"-mavx",
"-maes",
"-mpclmul",
],
})
OMP_DEPS = select({
"@bazel_tools//src/conditions:darwin_x86_64": ["@macos_omp_x64//:openmp"],
"@bazel_tools//src/conditions:darwin_arm64": ["@macos_omp_arm64//:openmp"],
"//conditions:default": [],
})
OMP_CFLAGS = select({
"@platforms//os:macos": ["-Xclang", "-fopenmp"],
"//conditions:default": ["-fopenmp"],
})
OMP_LINKFLAGS = select({
"@platforms//os:macos": [],
"//conditions:default": ["-fopenmp"],
})
def _yacl_copts():
return select({
"@yacl//bazel:yacl_build_as_release": RELEASE_FLAGS,
"@yacl//bazel:yacl_build_as_debug": DEBUG_FLAGS,
"@yacl//bazel:yacl_build_as_fast": FAST_FLAGS,
"//conditions:default": FAST_FLAGS,
}) + WARNING_FLAGS
def yacl_cc_binary(
copts = [],
linkopts = [],
**kargs):
cc_binary(
copts = copts + _yacl_copts() + select({
"@yacl//bazel/config:gm": ["-DYACL_WITH_TONGSUO"],
"//conditions:default": [],
}),
linkopts = linkopts + ["-ldl"],
**kargs
)
def yacl_cc_library(
copts = [],
deps = [],
**kargs):
cc_library(
copts = _yacl_copts() + copts + select({
"@yacl//bazel/config:gm": ["-DYACL_WITH_TONGSUO"],
"//conditions:default": [],
}),
deps = deps + [
"@com_github_gabime_spdlog//:spdlog",
],
**kargs
)
def yacl_cmake_external(**attrs):
if "generate_args" not in attrs:
attrs["generate_args"] = ["-GNinja"]
return cmake(**attrs)
def yacl_configure_make(**attrs):
if "args" not in attrs:
attrs["args"] = ["-j 8"]
return configure_make(**attrs)
def yacl_cc_test(
copts = [],
deps = [],
linkopts = [],
**kwargs):
cc_test(
copts = _yacl_copts() + copts + select({
"@yacl//bazel/config:gm": ["-DYACL_WITH_TONGSUO"],
"//conditions:default": [],
}),
deps = deps + [
"@com_google_googletest//:gtest_main",
],
linkopts = linkopts + ["-ldl"],
**kwargs
)