Skip to content

Commit

Permalink
Fix maskrcnn kernel issue on Jetson Nano
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Zhu <tylerz@nvidia.com>
  • Loading branch information
Tyler-D committed Jul 17, 2020
1 parent d9333c3 commit 3a68b0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/common/kernels/maskRCNNKernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -1732,7 +1732,7 @@ cudaError_t MultilevelPropose(cudaStream_t stream, int N, int inputCnt, int samp

CUASSERT(cudaGetLastError());

status = KeepTopKGatherBoxScore<1024>(stream, N, dtype, samples, param.keepTopK, sortClassValidCountPtr, sortClassScorePtr,
status = KeepTopKGatherBoxScore<512>(stream, N, dtype, samples, param.keepTopK, sortClassValidCountPtr, sortClassScorePtr,
sortClassLabelPtr, argMaxBBoxPtr, sortClassSampleIdxPtr, sortNMSMarkPtr, outScore, outBbox, 1);

CUASSERT(cudaGetLastError());
Expand Down

0 comments on commit 3a68b0a

Please sign in to comment.