Skip to content

Commit f0f7a22

Browse files
committed
Update on "Remove ExecuTorch copy of Vectorized"
All uses are outside ExecuTorch core, so we can just use ATen Vectorized. Differential Revision: [D66396016](https://our.internmc.facebook.com/intern/diff/D66396016/) [ghstack-poisoned]
2 parents 6124ad5 + d82c8dd commit f0f7a22

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

shim/xplat/executorch/build/env_interface.bzl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ def _patch_headers(kwargs):
140140

141141
# header_namespace is to workaround the fact that all C++ source files are having the pattern:
142142
# `include <executorch/.../*.h>` but BUCK2 root is at executorch/ so the `executorch/` prefix is redundant.
143-
kwargs["header_namespace"] = "executorch/" + native.package_name()
143+
if "header_namespace" not in kwargs:
144+
kwargs["header_namespace"] = "executorch/" + native.package_name()
144145
return kwargs
145146

146147
def _patch_pp_flags(kwargs):

0 commit comments

Comments
 (0)