-
Notifications
You must be signed in to change notification settings - Fork 314
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
torch 1.5 support #146
Comments
The solved issue link above doesn't work. Try open-mmlab/mmdetection#2513 |
I had to change a lot of .cpp files replacing AT_CHECK with TORCH_CHECK. But it worked for me! |
Thankyou I use pytorch 1.7 and success made it. |
priyank9320
added a commit
to priyank9320/DB
that referenced
this issue
Jun 9, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
torch 1.5 was released!
c++ code inside dcn will not built since AT_CHECK is deprecated and will thourgh not defined error.
Recommended replace AT_CHECK with TORCH_CHECK to support torch 1.5
This solved issue is found in https://github.com/open-mmlab/mmdetection/issues/2513, which i solved my problem "AT_CHECK was not declared in this scope"by this solution.
The text was updated successfully, but these errors were encountered: