I am getting the below error when I create a RPROI plugin with the following parameters:
constexpr int anchorsRatioCount = 3;
constexpr int anchorsScaleCount = 3;
constexpr int poolingH = 7;
constexpr int poolingW = 7;
constexpr int nmsMaxOut = 50;
constexpr float iouThreshold = 0.7f;
const float anchorsRatios[anchorsRatioCount] = { 0.5f, 1.0f, 2.0f };
const float anchorsScales[anchorsScaleCount] = { 1.0f, 4.0f, 8.0f };
constexpr int featureStride = 16;
constexpr int preNmsTop = 1024;
constexpr float minBoxSize = 1;
constexpr float spatialScale = 0.0625f;
NvPluginFasterRCNN.cu:170: virtual int nvinfer1::plugin::RPROIPlugin::enqueue(int, const void* const*, void**, void*, cudaStream_t): Assertion `status == STATUS_SUCCESS’ failed.
Aborted
Is it a valid set of Input for this plugin?