xinntao / EDVR

Winning Solution in NTIRE19 Challenges on Video Restoration and Enhancement (CVPR19 Workshops) - Video Restoration with Enhanced Deformable Convolutional Networks. EDVR has been merged into BasicSR and this repo is a mirror of BasicSR.
https://github.com/xinntao/BasicSR
1.48k stars 320 forks source link

torch 1.5 support #146

Open Remhardt opened 4 years ago

Remhardt commented 4 years ago

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.

dmmartindale commented 4 years ago

The solved issue link above doesn't work. Try https://github.com/open-mmlab/mmdetection/issues/2513

rsrrohit commented 4 years ago

I had to change a lot of .cpp files replacing AT_CHECK with TORCH_CHECK. But it worked for me!

linyu0219 commented 3 years ago

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.