Skip to content

Commit 2522789

Browse files
authored
Move constraints out of build
Differential Revision: D71267118 Pull Request resolved: #9320
1 parent 7be0af5 commit 2522789

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

runtime/kernel/targets.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def _operator_registry_preprocessor_flags():
77
elif not runtime.is_oss:
88
return select({
99
"DEFAULT": [],
10-
"fbsource//xplat/executorch/build/constraints:executorch-max-kernel-num-256": ["-DMAX_KERNEL_NUM=256"],
11-
"fbsource//xplat/executorch/build/constraints:executorch-max-kernel-num-128": ["-DMAX_KERNEL_NUM=128"],
12-
"fbsource//xplat/executorch/build/constraints:executorch-max-kernel-num-64": ["-DMAX_KERNEL_NUM=64"],
10+
"fbsource//xplat/executorch/tools/buck/constraints:executorch-max-kernel-num-256": ["-DMAX_KERNEL_NUM=256"],
11+
"fbsource//xplat/executorch/tools/buck/constraints:executorch-max-kernel-num-128": ["-DMAX_KERNEL_NUM=128"],
12+
"fbsource//xplat/executorch/tools/buck/constraints:executorch-max-kernel-num-64": ["-DMAX_KERNEL_NUM=64"],
1313
})
1414
else:
1515
return []
File renamed without changes.

0 commit comments

Comments
 (0)