Skip to content

Commit 730efdd

Browse files
authored
Merge pull request #465 from NVIDIA/headers_fix
chore(BUILD): Fix packaging of headers
2 parents f60bf6c + 36c1c7e commit 730efdd

File tree

2 files changed

+12
-4
lines changed

2 files changed

+12
-4
lines changed

BUILD

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@ pkg_tar(
1818
"//core/conversion/var:include",
1919
"//core/conversion/tensorcontainer:include",
2020
"//core/conversion/evaluators:include",
21-
"//core/plugins:include",
21+
"//core/ir:include",
2222
"//core/lowering:include",
2323
"//core/lowering/passes:include",
24+
"//core/partitioning:include",
25+
"//core/plugins:impl_include",
26+
"//core/plugins:include",
2427
"//core/runtime:include",
2528
"//core/util:include",
2629
"//core/util/logging:include",

core/plugins/BUILD

+8-3
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ load("@rules_pkg//:pkg.bzl", "pkg_tar")
4242
pkg_tar(
4343
name = "include",
4444
package_dir = "core/plugins/",
45-
srcs = ["plugins.h",
46-
"impl/interpolate_plugin.h",
47-
"impl/normalize_plugin.h"],
45+
srcs = ["plugins.h"],
4846
)
47+
48+
pkg_tar(
49+
name = "impl_include",
50+
package_dir = "core/plugins/impl",
51+
srcs = ["impl/interpolate_plugin.h",
52+
"impl/normalize_plugin.h"],
53+
)

0 commit comments

Comments
 (0)