-
Notifications
You must be signed in to change notification settings - Fork 26.3k
Completely remove build_aten and use_aten #10469
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
orionr
left a comment
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.
One thing I'm debating is whether we want all of the ANDROID and IOS checks (if (NOT ANDROID and NOT IOS), etc.), but I think we are likely to incrementally remove these checks over time, so it's okay. I'm guessing all of these are needed for iOS and Android builds to pass?
|
Yes. The checks for mobile is needed for Android and iOS builds to pass. |
|
It seems like an un-improvement to inline |
|
@pytorchbot retest this please |
@iotamudelta @Jorghi12 Could you help taking a look? |
|
After investigation this is because |
aten/src/ATen/CMakeLists.txt
Outdated
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
.jenkins/pytorch/build.sh
Outdated
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
cmake/Dependencies.cmake
Outdated
This comment was marked as off-topic.
This comment was marked as off-topic.
Sorry, something went wrong.
|
@pytorchbot retest this please |
This reverts commit 9b4a4446eeaa09e453a7be5f6294b0c733df86fc.
This reverts commit 9eef9fc8fd1a5497aec7236872d925443b6a47f0.
facebook-github-bot
left a comment
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.
mingzhe09088 has imported this pull request. If you are a Facebook employee, you can view this diff on Phabricator.
Summary: Breaking out of #8338 to completely remove build_aten and use_aten. Pull Request resolved: pytorch/pytorch#10469 Reviewed By: orionr Differential Revision: D9413639 Pulled By: mingzhe09088 fbshipit-source-id: b7203aa4f5f2bb95c504c8dc187a3167f2570183
* upstream/master: (147 commits) Support Loading to GPU (pytorch#10710) More changes for hidden visibility (pytorch#10692) Add arguments __repr__ in Distribution base class Add util function from core type to dtype (pytorch#10716) Make ONNX_ATEN_FALLBACK as internal default option Set the BUILD_ENVIRONMENT variable before installing sccache. (pytorch#10640) Avoid shadowing i, j vars in GeneralProposals test (pytorch#10721) Move THNN Reduction to ATen/core. (pytorch#10703) Completely remove build_aten and use_aten (pytorch#10469) Make empty list literals construct empty Tensor[] (pytorch#10705) Soumith's last few patches to v0.4.1 Fix issues link in Caffe2 readme (pytorch#10711) Update the onnx Gemm op to FC/FCTransposed logic in caffe2 onnx backend (pytorch#10108) Adding ATEN_NO_TEST option to root level cmake for propogation to aten Allow method-style casts on tensors (pytorch#10641) Fix pytorch#10698 build failure (pytorch#10704) Add support for Log() Add a bisect percentile operator (pytorch#10563) Fix EnsureCPUOutputOp (pytorch#10651) Nomnigraph - rename some APIs that invole Subtree to Subgraph (pytorch#10551) ...
Summary: Breaking out of pytorch#8338 to completely remove build_aten and use_aten. Pull Request resolved: pytorch#10469 Reviewed By: orionr Differential Revision: D9413639 Pulled By: mingzhe09088 fbshipit-source-id: b7203aa4f5f2bb95c504c8dc187a3167f2570183

Breaking out of #8338 to completely remove build_aten and use_aten.