forked from pytorch/executorch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only error out when the number of kernels being registered exceeds th…
…e limit (pytorch#1487) Summary: Pull Request resolved: pytorch#1487 As titled. In some of the CI failures such as this one: https://github.com/pytorch/executorch/actions/runs/7331918023/job/19965267429?pr=1485#step:11:1520 The error message is confusing: ``` The total number of kernels to be registered is larger than the limit 17. 15 kernels are already registered and we're trying to register another 2 kernels. ``` Here I'm changing the ">=" condition to be ">" so that the error message makes sense. Reviewed By: lucylq Differential Revision: D52422427 fbshipit-source-id: 645d38bb1b52f27e525016984552a29f06e54ac0
- Loading branch information
1 parent
7464600
commit ff28629
Showing
4 changed files
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters