OpenGVLab / DCNv4

[CVPR 2024] Deformable Convolution v4
https://arxiv.org/pdf/2401.06197.pdf
MIT License
516 stars 27 forks source link

Can DCNv4 support torch=2.0 ? #14

Open moderate-leon opened 10 months ago

moderate-leon commented 10 months ago

Can DCNv4 support torch=2.0 ?

moderate-leon commented 10 months ago

This (from DCNv4 import ext)function is missing when I want to use it without compiling. Can DCNv4 be used without compilation? DCN1

zhiqi-li commented 10 months ago

This (from DCNv4 import ext)function is missing when I want to use it without compiling. Can DCNv4 be used without compilation? DCN1

The DCNv4 op involves our own CUDA implementation, so it should be compiled.

YuwenXiong commented 10 months ago

Can DCNv4 support torch=2.0 ?

It should support torch w/ 2.0+ as well.

moderate-leon commented 9 months ago

Can DCNv4 support torch=2.0 ?

It should support torch w/ 2.0+ as well.

Thank you very much and I have successfully compiled DCNv4 with torch 2.0.

moderate-leon commented 9 months ago

This (from DCNv4 import ext)function is missing when I want to use it without compiling. Can DCNv4 be used without compilation? DCN1

The DCNv4 op involves our own CUDA implementation, so it should be compiled.

OK, thanks for you answer.