forked from pytorch/pytorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.bzl
More file actions
35 lines (34 loc) · 1002 Bytes
/
build.bzl
File metadata and controls
35 lines (34 loc) · 1002 Bytes
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
def define_targets(rules, c10_name = "c10"):
rules.cc_library(
name = c10_name,
visibility = ["//visibility:public"],
deps = [
"//c10/core:CPUAllocator",
"//c10/core:ScalarType",
"//c10/core:alignment",
"//c10/core:alloc_cpu",
"//c10/core:base",
"//c10/macros",
"//c10/mobile:CPUCachingAllocator",
"//c10/mobile:CPUProfilingAllocator",
"//c10/util:TypeCast",
"//c10/util:base",
"//c10/util:typeid",
] + rules.if_cuda(
[
"//c10/cuda:cuda",
"//c10/cuda:Macros",
],
[],
),
)
rules.cc_library(
name = c10_name + "_headers",
deps = [
"//c10/core:base_headers",
"//c10/macros",
"//c10/util:base_headers",
"//c10/util:bit_cast",
],
visibility = ["//visibility:public"],
)