We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceaf147 commit cf23d5dCopy full SHA for cf23d5d
runtime/core/portable_type/c10/c10/targets.bzl
@@ -44,7 +44,8 @@ def define_common_targets():
44
deps = select({
45
"DEFAULT": [],
46
# Half-inl.h depends on vec_half.h from ATen, but only when building for x86.
47
- "ovr_config//cpu:x86_64": [
+ # Deps get pulled in twice if HTP sim is enabled.
48
+ "ovr_config//cpu:x86_64": [] if read_config("user", "enable_fllm_on_htp_sim", "false") == "true" else [
49
":aten_headers_for_executorch",
50
],
51
}),
0 commit comments