Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix use_static_deps #1834

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

Fix use_static_deps #1834

wants to merge 1 commit into from

Conversation

dbort
Copy link
Contributor

@dbort dbort commented Feb 3, 2024

Summary:
The patching logic wasn't actually modifying deps to use the _static targets when a top-level target specified use_static_deps.

E.g.,

buck2 cquery "fbsource//xplat/executorch/extension/module:module_static" --output-attribute buck.deps | grep /executorch

showed that this target depended on non-static deps

  "fbsource//xplat/executorch/extension/module:module_static (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)": {
      "fbsource//xplat/executorch/extension/memory_allocator:malloc_memory_allocator (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",
      "fbsource//xplat/executorch/extension/data_loader:mmap_data_loader (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",
      "fbsource//xplat/executorch/runtime/executor:program (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",

instead of depending on the _static versions of those targets.

This happened because _patch_executorch_references() was calling env.patch_target_for_env(target) (which can add a prefix like //xplat) prefix before calling env.target_needs_patch(target) (which checks the prefix of the targets).

So, now we do the patch_target_for_env() after all other calls to target_needs_patch().

Reviewed By: larryliu0820, kirklandsign

Differential Revision: D53374745

Summary:
The patching logic wasn't actually modifying deps to use the `_static` targets when a top-level target specified `use_static_deps`.

E.g.,
```
buck2 cquery "fbsource//xplat/executorch/extension/module:module_static" --output-attribute buck.deps | grep /executorch
```
showed that this target depended on non-static deps
```
  "fbsource//xplat/executorch/extension/module:module_static (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)": {
      "fbsource//xplat/executorch/extension/memory_allocator:malloc_memory_allocator (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",
      "fbsource//xplat/executorch/extension/data_loader:mmap_data_loader (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",
      "fbsource//xplat/executorch/runtime/executor:program (cfg:linux-x86_64-fbcode-platform010-asan-ubsan-dev#2092a9d2d16c9cde)",
```
instead of depending on the `_static` versions of those targets.

This happened because `_patch_executorch_references()` was calling `env.patch_target_for_env(target)` (which can add a prefix like `//xplat`) prefix before calling `env.target_needs_patch(target)` (which checks the prefix of the targets).

So, now we do the `patch_target_for_env()` after all other calls to `target_needs_patch()`.

Reviewed By: larryliu0820, kirklandsign

Differential Revision: D53374745
Copy link

pytorch-bot bot commented Feb 3, 2024

🔗 Helpful Links

🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/1834

Note: Links to docs will display an error until the docs builds have been completed.

✅ You can merge normally! (7 Unrelated Failures)

As of commit 21fec32 with merge base ad67a3d (image):

FLAKY - The following jobs failed but were likely due to flakiness present on trunk:

This comment was automatically generated by Dr. CI and updates every 15 minutes.

@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Feb 3, 2024
@facebook-github-bot
Copy link
Contributor

This pull request was exported from Phabricator. Differential Revision: D53374745

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. fb-exported
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants