-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathBUILD
55 lines (49 loc) · 1002 Bytes
/
BUILD
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
load("@rules_cc//cc:defs.bzl", "cc_binary")
package(default_visibility = ["//visibility:public"])
cc_binary(
name = "libtorchtrt_plugins.so",
srcs = [],
linkshared = True,
linkstatic = True,
deps = [
"//core/plugins:torch_tensorrt_plugins",
],
)
cc_binary(
name = "libtorchtrt_runtime.so",
srcs = [],
linkshared = True,
linkstatic = True,
deps = [
"//core/plugins:torch_tensorrt_plugins",
"//core/runtime",
],
)
cc_binary(
name = "libtorchtrt.so",
srcs = [],
linkshared = True,
linkstatic = True,
deps = [
"//cpp:torch_tensorrt",
],
)
cc_binary(
name = "torchtrt.dll",
srcs = [],
linkshared = True,
linkstatic = True,
deps = [
"//cpp:torch_tensorrt",
],
)
cc_binary(
name = "torchtrt_runtime.dll",
srcs = [],
linkshared = True,
linkstatic = True,
deps = [
"//core/plugins:torch_tensorrt_plugins",
"//core/runtime",
],
)