DCNv2 icon indicating copy to clipboard operation
DCNv2 copied to clipboard

Possible undocumented incompatibility with Torch >1.6?

Open anthony-khong opened this issue 4 years ago • 1 comments

The following Dockerfile builds okay:

FROM pytorch/pytorch:1.5.1-cuda10.1-cudnn7-runtime

RUN apt-get update && apt-get install -y build-essential git

RUN git clone https://github.com/CharlesShang/DCNv2 \
    && cd DCNv2 \
    && ./make.sh

However, the following Dockerfile fails to build:

FROM pytorch/pytorch:1.6.0-cuda10.1-cudnn7-runtime

RUN apt-get update && apt-get install -y build-essential git

RUN git clone https://github.com/CharlesShang/DCNv2 \
    && cd DCNv2 \
    && ./make.sh

I wonder if there's an undocumented incompatibility here?

anthony-khong avatar Feb 20 '21 01:02 anthony-khong

see here https://github.com/jinfagang/DCNv2_latest.git

Eikor avatar Mar 01 '21 02:03 Eikor