-
Notifications
You must be signed in to change notification settings - Fork 539
[CMake] Avoid extension_module have dupe flat_tensor cpp #10735
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
Conversation
Currently, _extension_module__srcs has srcs from flat_tensor. This is bad. ``` set(_extension_module__srcs extension/flat_tensor/flat_tensor_data_map.cpp extension/flat_tensor/serialize/flat_tensor_header.cpp extension/module/module.cpp ) ``` We need to update deps. We need to export extension_flat_tensor to install directory.
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/executorch/10735
Note: Links to docs will display an error until the docs builds have been completed. ❌ 1 New FailureAs of commit 9bdca39 with merge base 304c567 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@kirklandsign has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
@kirklandsign has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@kirklandsign has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@kirklandsign has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
Differential Revision: D74278030 Pull Request resolved: pytorch#10735
Currently, _extension_module__srcs has srcs from flat_tensor. This is bad.
We need to update deps. We need to export extension_flat_tensor to install directory.