-
Notifications
You must be signed in to change notification settings - Fork 7k
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
replace c10::stoi with std::stoi #7966
Conversation
🔗 Helpful Links🧪 See artifacts and rendered test results at hud.pytorch.org/pr/pytorch/vision/7966
Note: Links to docs will display an error until the docs builds have been completed. ❌ 4 New FailuresAs of commit 8cf35b6 with merge base 75046bd (): NEW FAILURES - The following jobs have failed:
This comment was automatically generated by Dr. CI and updates every 15 minutes. |
@pmeier I also noticed the building error in torchvision, this fix should work. By the way, c10::to_string in this file should be replaced with std::to_string. |
@cyyever There is no |
Sorry, I made a mistake. No |
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.
Sounds good, thanks!
Hey @pmeier! You merged this PR, but no labels were added. The list of valid labels is available at https://github.com/pytorch/vision/blob/main/.github/process_commit.py |
Reviewed By: matteobettini Differential Revision: D49600772 fbshipit-source-id: d3b73fc1a1e5a1e81212bc4e0d16c9d17ddeedcf
c10::stoi
was removed in pytorch/pytorch#109179 in favor ofstd::stoi
.cc @cyyever