is there a bug in roi_pooling.cu? #8504
Replies: 4 comments
-
so it isn't a bug. only if count >> threads in gpu will cause error. |
Beta Was this translation helpful? Give feedback.
-
@apache/mxnet-committers: This issue has been inactive for the past 90 days. It has no label and needs triage. For general "how-to" questions, our user forum (and Chinese version) is a good place to get help. |
Beta Was this translation helpful? Give feedback.
-
@conansherry Hi, are you facing the same issues in the most recent update? |
Beta Was this translation helpful? Give feedback.
-
@sandeep-krishnamurthy please add CUDA, C++ to this topic |
Beta Was this translation helpful? Give feedback.
-
if blockDim.x * gridDim.x * gridDim.y + (blockIdx.x + blockIdx.y * gridDim.x) * blockDim.x + threadIdx.x < count:
bottom_rois += n * 5;
bottom_data += (roi_batch_ind * channels + c) * height * width;
will be assigned a wrong value?
Beta Was this translation helpful? Give feedback.
All reactions