-
Notifications
You must be signed in to change notification settings - Fork 23.8k
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
[MPS] Fwd-fix for clamp regression #122148
Conversation
Forward fix for regresion introdcued by #121381 - Do not call `minimumWithNaNPropagationWithPrimaryTensor` for integer typed tensors as it will crash with ``` /AppleInternal/Library/BuildRoots/ce725a5f-c761-11ee-a4ec-b6ef2fd8d87b/Library/Caches/com.apple.xbs/Sources/MetalPerformanceShaders/MPSCore/Utility/MPSKernelDAG.mm:805: failed assertion `Error getting visible function: (null) Function isNaN_i16_i8 was not found in the library' ``` - Change the order of max and min call as it's apparently important for consistency, as `min(max(a, b), c)` might not equal to `max(min(a, c), b)` if `c` is not always less or equal than `b`
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/122148
Note: Links to docs will display an error until the docs builds have been completed. ✅ No FailuresAs of commit e9f105e with merge base e6cf3e9 ( This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@pytorchbot merge -f "Lint and MPS tests are green" |
Merge startedYour change will be merged immediately since you used the force (-f) flag, bypassing any CI checks (ETA: 1-5 minutes). Please use Learn more about merging in the wiki. Questions? Feedback? Please reach out to the PyTorch DevX Team |
@pytorchbot cherry-pick --onto release/2.3 --fixes #120899 -c critical |
Forward fix for regressions introduced by #121381 as we failed to run MPS CI twice on it - Do not call `minimumWithNaNPropagationWithPrimaryTensor` for integral tensors as it will crash with ``` /AppleInternal/Library/BuildRoots/ce725a5f-c761-11ee-a4ec-b6ef2fd8d87b/Library/Caches/com.apple.xbs/Sources/MetalPerformanceShaders/MPSCore/Utility/MPSKernelDAG.mm:805: failed assertion `Error getting visible function: (null) Function isNaN_i16_i8 was not found in the library' ``` - Change the order of max and min call as it's apparently important for consistency, as `min(max(a, b), c)` might not equal to `max(min(a, c), b)` if `c` is not always less or equal than `b` Pull Request resolved: #122148 Approved by: https://github.com/huydhn (cherry picked from commit 34f36a2)
Cherry picking #122148The cherry pick PR is at #123381 and it is linked with issue #120899 Details for Dev Infra teamRaised by workflow job |
@pytorchbot cherry-pick --onto release/2.3 --fixes #120899 -c critical |
Cherry picking #122148Command
Details for Dev Infra teamRaised by workflow job |
Forward fix for regressions introduced by #121381 as we failed to run MPS CI twice on it - Do not call `minimumWithNaNPropagationWithPrimaryTensor` for integral tensors as it will crash with ``` /AppleInternal/Library/BuildRoots/ce725a5f-c761-11ee-a4ec-b6ef2fd8d87b/Library/Caches/com.apple.xbs/Sources/MetalPerformanceShaders/MPSCore/Utility/MPSKernelDAG.mm:805: failed assertion `Error getting visible function: (null) Function isNaN_i16_i8 was not found in the library' ``` - Change the order of max and min call as it's apparently important for consistency, as `min(max(a, b), c)` might not equal to `max(min(a, c), b)` if `c` is not always less or equal than `b` Pull Request resolved: #122148 Approved by: https://github.com/huydhn
Forward fix for regressions introduced by #121381 as we failed to run MPS CI twice on it - Do not call `minimumWithNaNPropagationWithPrimaryTensor` for integral tensors as it will crash with ``` /AppleInternal/Library/BuildRoots/ce725a5f-c761-11ee-a4ec-b6ef2fd8d87b/Library/Caches/com.apple.xbs/Sources/MetalPerformanceShaders/MPSCore/Utility/MPSKernelDAG.mm:805: failed assertion `Error getting visible function: (null) Function isNaN_i16_i8 was not found in the library' ``` - Change the order of max and min call as it's apparently important for consistency, as `min(max(a, b), c)` might not equal to `max(min(a, c), b)` if `c` is not always less or equal than `b` Pull Request resolved: #122148 Approved by: https://github.com/huydhn Co-authored-by: Nikita Shulga <nikita.shulga@gmail.com>
Forward fix for regressions introduced by #121381 as we failed to run MPS CI twice on it
minimumWithNaNPropagationWithPrimaryTensor
for integral tensors as it will crash withconsistency, as
min(max(a, b), c)
might not equal tomax(min(a, c), b)
ifc
is not always less or equal thanb