DCNv2
DCNv2 copied to clipboard
Possible undocumented incompatibility with Torch >1.6?
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?
see here https://github.com/jinfagang/DCNv2_latest.git