Giter Site home page Giter Site logo

Comments (10)

chengdazhi avatar chengdazhi commented on September 26, 2024 6

Possible cause: channel dimension too large.

You can try to change the src/deform_conv_cuda_kernel.cu at line No.68 to

const int CUDA_NUM_THREADS = 1024;
const int kMaxGridNum = 65535;
inline int GET_BLOCKS(const int N) {
  return std::min(kMaxGridNum, (N + CUDA_NUM_THREADS - 1) / CUDA_NUM_THREADS);
}

and see if this can solve the problem.
 

from deformable-convolution-v2-pytorch.

gasvn avatar gasvn commented on September 26, 2024

I met a similar error. When the input image is larger than 1024x1024 (1, 512, 128, 128 for that layer), the same invalid argument error occurs. I think the reason for this error is that the pre-allocated memory space is not enough. But I not familiar with the Cuda program in pytorch, so I can't find a solution yet.

from deformable-convolution-v2-pytorch.

happycoding1996 avatar happycoding1996 commented on September 26, 2024

Same problem. Pytorch 0.4.0, python 3.5, cuda 8.0.

from deformable-convolution-v2-pytorch.

chengdazhi avatar chengdazhi commented on September 26, 2024

Hi, could you provide a short code snippet to reproduce the bug? Thanks a lot!

from deformable-convolution-v2-pytorch.

chengdazhi avatar chengdazhi commented on September 26, 2024

FYI, my environment is PyTorch 0.4.1, python 3.6/3.7, cuda 9.0.

from deformable-convolution-v2-pytorch.

shaoqb avatar shaoqb commented on September 26, 2024

Similar error,how to solve it? Pytorch 0.4.1, python 3.7, cuda 9.0

from deformable-convolution-v2-pytorch.

jwwangchn avatar jwwangchn commented on September 26, 2024

@chengdazhi It solved my problem. Thanks.

from deformable-convolution-v2-pytorch.

chengdazhi avatar chengdazhi commented on September 26, 2024

@jwwangchn Thanks for your feedback. I have updated the .cu file in the commit 50a282 .

from deformable-convolution-v2-pytorch.

abhijay9 avatar abhijay9 commented on September 26, 2024

Hi,

I have set up the deform conv on a machine with a single 1060 and it works but when I tried using the same on a machine with (multi-gpu) GTX TITAN X it gives me an error:

error in modulated_deformable_im2col_cuda: invalid device function

This is already present in the file deform_conv_cuda_kernel.cu
#13 (comment)

What do you think might be the problem?

from deformable-convolution-v2-pytorch.

MurrayC7 avatar MurrayC7 commented on September 26, 2024

Hi,

I have set up the deform conv on a machine with a single 1060 and it works but when I tried using the same on a machine with (multi-gpu) GTX TITAN X it gives me an error:

error in modulated_deformable_im2col_cuda: invalid device function

This is already present in the file deform_conv_cuda_kernel.cu
#13 (comment)

What do you think might be the problem?

@chengdazhi @abhijay-g Did you figure it out? I also met this issue.

from deformable-convolution-v2-pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.