File size: 30,616 Bytes
5c333e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 | /*
* SPDX-FileCopyrightText: Copyright (c) 1993-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "batchedNMSPlugin.h"
#include <algorithm>
#include <cstring>
#include <iostream>
#include <set>
#include <sstream>
#include <vector>
namespace nvinfer1::plugin
{
#define NVBUG_3321606_WAR 1
namespace
{
char const* const kNMS_PLUGIN_VERSION{"1"};
char const* const kNMS_PLUGIN_NAMES[] = {"BatchedNMS_TRT", "BatchedNMSDynamic_TRT"};
} // namespace
template <>
void write<NMSParameters>(char*& buffer, NMSParameters const& val)
{
auto* param = reinterpret_cast<NMSParameters*>(buffer);
std::memset(param, 0, sizeof(NMSParameters));
param->shareLocation = val.shareLocation;
param->backgroundLabelId = val.backgroundLabelId;
param->numClasses = val.numClasses;
param->topK = val.topK;
param->keepTopK = val.keepTopK;
param->scoreThreshold = val.scoreThreshold;
param->iouThreshold = val.iouThreshold;
param->isNormalized = val.isNormalized;
buffer += sizeof(NMSParameters);
}
static inline pluginStatus_t checkParams(NMSParameters const& param)
{
// NMS plugin supports maximum thread blocksize of 512 and upto 8 blocks at once.
constexpr int32_t maxTopK{512 * 8};
if (param.topK > maxTopK)
{
plugin::gLogError << "Invalid parameter: NMS topK (" << param.topK << ") exceeds limit (" << maxTopK << ")"
<< std::endl;
return STATUS_BAD_PARAM;
}
return STATUS_SUCCESS;
}
BatchedNMSPlugin::BatchedNMSPlugin(NMSParameters params)
: param(params)
{
gLogWarning << "BatchedNMSPlugin is deprecated since TensorRT 9.0. Use INetworkDefinition::addNMS() to add an "
"INMSLayer OR use EfficientNMS plugin."
<< std::endl;
mPluginStatus = checkParams(param);
PLUGIN_VALIDATE(mPluginStatus == STATUS_SUCCESS);
}
BatchedNMSPlugin::BatchedNMSPlugin(void const* data, size_t length)
{
char const *d = reinterpret_cast<char const*>(data), *a = d;
param = read<NMSParameters>(d);
mBoxesSize = read<int32_t>(d);
mScoresSize = read<int32_t>(d);
mNumPriors = read<int32_t>(d);
mClipBoxes = read<bool>(d);
mPrecision = read<DataType>(d);
mScoreBits = read<int32_t>(d);
mCaffeSemantics = read<bool>(d);
PLUGIN_VALIDATE(d == a + length);
mPluginStatus = checkParams(param);
PLUGIN_VALIDATE(mPluginStatus == STATUS_SUCCESS);
}
BatchedNMSDynamicPlugin::BatchedNMSDynamicPlugin(NMSParameters params)
: param(params)
{
mPluginStatus = checkParams(param);
PLUGIN_VALIDATE(mPluginStatus == STATUS_SUCCESS);
}
BatchedNMSDynamicPlugin::BatchedNMSDynamicPlugin(void const* data, size_t length)
{
char const *d = reinterpret_cast<char const*>(data), *a = d;
param = read<NMSParameters>(d);
mBoxesSize = read<int32_t>(d);
mScoresSize = read<int32_t>(d);
mNumPriors = read<int32_t>(d);
mClipBoxes = read<bool>(d);
mPrecision = read<DataType>(d);
mScoreBits = read<int32_t>(d);
mCaffeSemantics = read<bool>(d);
PLUGIN_VALIDATE(d == a + length);
mPluginStatus = checkParams(param);
PLUGIN_VALIDATE(mPluginStatus == STATUS_SUCCESS);
}
int32_t BatchedNMSPlugin::getNbOutputs() const noexcept
{
return 4;
}
int32_t BatchedNMSDynamicPlugin::getNbOutputs() const noexcept
{
return 4;
}
int32_t BatchedNMSPlugin::initialize() noexcept
{
return STATUS_SUCCESS;
}
int32_t BatchedNMSDynamicPlugin::initialize() noexcept
{
return STATUS_SUCCESS;
}
void BatchedNMSPlugin::terminate() noexcept {}
void BatchedNMSDynamicPlugin::terminate() noexcept {}
Dims BatchedNMSPlugin::getOutputDimensions(int32_t index, Dims const* inputs, int32_t nbInputDims) noexcept
{
try
{
PLUGIN_ASSERT(nbInputDims == 2);
PLUGIN_ASSERT(index >= 0 && index < this->getNbOutputs());
PLUGIN_ASSERT(inputs[0].nbDims == 3);
PLUGIN_ASSERT(inputs[1].nbDims == 2 || (inputs[1].nbDims == 3 && inputs[1].d[2] == 1));
// mBoxesSize: number of box coordinates for one sample
mBoxesSize = inputs[0].d[0] * inputs[0].d[1] * inputs[0].d[2];
// mScoresSize: number of scores for one sample
mScoresSize = inputs[1].d[0] * inputs[1].d[1];
// num_detections
if (index == 0)
{
Dims dim0{};
dim0.nbDims = 0;
return dim0;
}
// nmsed_boxes
if (index == 1)
{
return Dims{2, {param.keepTopK, 4}};
}
// nmsed_scores or nmsed_classes
Dims dim1{};
dim1.nbDims = 1;
dim1.d[0] = param.keepTopK;
return dim1;
}
catch (std::exception const& e)
{
caughtError(e);
}
return Dims{};
}
DimsExprs BatchedNMSDynamicPlugin::getOutputDimensions(
int32_t outputIndex, DimsExprs const* inputs, int32_t nbInputs, IExprBuilder& exprBuilder) noexcept
{
try
{
PLUGIN_ASSERT(nbInputs == 2);
PLUGIN_ASSERT(outputIndex >= 0 && outputIndex < this->getNbOutputs());
// Shape of boxes input should be
// Constant shape: [batch_size, num_boxes, num_classes, 4] or [batch_size, num_boxes, 1, 4]
// shareLocation == 0 or 1
// or
// Dynamic shape: some dimension values may be -1
PLUGIN_ASSERT(inputs[0].nbDims == 4);
// Shape of scores input should be
// Constant shape: [batch_size, num_boxes, num_classes] or [batch_size, num_boxes, num_classes, 1]
// or
// Dynamic shape: some dimension values may be -1
PLUGIN_ASSERT(inputs[1].nbDims == 3 || inputs[1].nbDims == 4);
DimsExprs out_dim;
// num_detections
if (outputIndex == 0)
{
out_dim.nbDims = 2;
out_dim.d[0] = inputs[0].d[0];
out_dim.d[1] = exprBuilder.constant(1);
}
// nmsed_boxes
else if (outputIndex == 1)
{
out_dim.nbDims = 3;
out_dim.d[0] = inputs[0].d[0];
out_dim.d[1] = exprBuilder.constant(param.keepTopK);
out_dim.d[2] = exprBuilder.constant(4);
}
// nmsed_scores, outputIndex == 2
// nmsed_classes
else
{
out_dim.nbDims = 2;
out_dim.d[0] = inputs[0].d[0];
out_dim.d[1] = exprBuilder.constant(param.keepTopK);
}
return out_dim;
}
catch (std::exception const& e)
{
caughtError(e);
}
return DimsExprs{};
}
size_t BatchedNMSPlugin::getWorkspaceSize(int32_t maxBatchSize) const noexcept
{
return detectionInferenceWorkspaceSize(param.shareLocation, maxBatchSize, mBoxesSize, mScoresSize, param.numClasses,
mNumPriors, param.topK, mPrecision, mPrecision);
}
size_t BatchedNMSDynamicPlugin::getWorkspaceSize(
PluginTensorDesc const* inputs, int32_t nbInputs, PluginTensorDesc const* outputs, int32_t nbOutputs) const noexcept
{
int32_t batchSize = inputs[0].dims.d[0];
int32_t boxesSize = inputs[0].dims.d[1] * inputs[0].dims.d[2] * inputs[0].dims.d[3];
int32_t scoreSize = inputs[1].dims.d[1] * inputs[1].dims.d[2];
int32_t numPriors = inputs[0].dims.d[1];
return detectionInferenceWorkspaceSize(param.shareLocation, batchSize, boxesSize, scoreSize, param.numClasses,
numPriors, param.topK, mPrecision, mPrecision);
}
int32_t BatchedNMSPlugin::enqueue(
int32_t batchSize, void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept
{
try
{
void const* const locData = inputs[0];
void const* const confData = inputs[1];
if (mPluginStatus != STATUS_SUCCESS)
{
return -1;
}
void* keepCount = outputs[0];
void* nmsedBoxes = outputs[1];
void* nmsedScores = outputs[2];
void* nmsedClasses = outputs[3];
pluginStatus_t status = nmsInference(stream, batchSize, mBoxesSize, mScoresSize, param.shareLocation,
param.backgroundLabelId, mNumPriors, param.numClasses, param.topK, param.keepTopK, param.scoreThreshold,
param.iouThreshold, mPrecision, locData, mPrecision, confData, keepCount, nmsedBoxes, nmsedScores,
nmsedClasses, workspace, param.isNormalized, false, mClipBoxes, mScoreBits, mCaffeSemantics);
return status == STATUS_SUCCESS ? 0 : -1;
}
catch (std::exception const& e)
{
caughtError(e);
}
return -1;
}
int32_t BatchedNMSDynamicPlugin::enqueue(PluginTensorDesc const* inputDesc, PluginTensorDesc const* /* outputDesc */,
void const* const* inputs, void* const* outputs, void* workspace, cudaStream_t stream) noexcept
{
try
{
PLUGIN_VALIDATE(inputDesc != nullptr && inputs != nullptr && outputs != nullptr && workspace != nullptr);
void const* const locData = inputs[0];
void const* const confData = inputs[1];
if (mPluginStatus != STATUS_SUCCESS)
{
return -1;
}
void* keepCount = outputs[0];
void* nmsedBoxes = outputs[1];
void* nmsedScores = outputs[2];
void* nmsedClasses = outputs[3];
pluginStatus_t status = nmsInference(stream, inputDesc[0].dims.d[0], mBoxesSize, mScoresSize,
param.shareLocation, param.backgroundLabelId, mNumPriors, param.numClasses, param.topK, param.keepTopK,
param.scoreThreshold, param.iouThreshold, mPrecision, locData, mPrecision, confData, keepCount, nmsedBoxes,
nmsedScores, nmsedClasses, workspace, param.isNormalized, false, mClipBoxes, mScoreBits, mCaffeSemantics);
return status;
}
catch (std::exception const& e)
{
caughtError(e);
}
return -1;
}
size_t BatchedNMSPlugin::getSerializationSize() const noexcept
{
// NMSParameters, mBoxesSize,mScoresSize,mNumPriors
return sizeof(NMSParameters) + sizeof(int32_t) * 3 + sizeof(bool) * 2 + sizeof(DataType) + sizeof(int32_t);
}
void BatchedNMSPlugin::serialize(void* buffer) const noexcept
{
char *d = reinterpret_cast<char*>(buffer), *a = d;
write(d, param);
write(d, mBoxesSize);
write(d, mScoresSize);
write(d, mNumPriors);
write(d, mClipBoxes);
write(d, mPrecision);
write(d, mScoreBits);
write(d, mCaffeSemantics);
PLUGIN_ASSERT(d == a + getSerializationSize());
}
size_t BatchedNMSDynamicPlugin::getSerializationSize() const noexcept
{
// NMSParameters, mBoxesSize,mScoresSize,mNumPriors
return sizeof(NMSParameters) + sizeof(int32_t) * 3 + sizeof(bool) * 2 + sizeof(DataType) + sizeof(int32_t);
}
void BatchedNMSDynamicPlugin::serialize(void* buffer) const noexcept
{
char *d = reinterpret_cast<char*>(buffer), *a = d;
write(d, param);
write(d, mBoxesSize);
write(d, mScoresSize);
write(d, mNumPriors);
write(d, mClipBoxes);
write(d, mPrecision);
write(d, mScoreBits);
write(d, mCaffeSemantics);
PLUGIN_ASSERT(d == a + getSerializationSize());
}
void BatchedNMSPlugin::configurePlugin(Dims const* inputDims, int32_t nbInputs, Dims const* outputDims,
int32_t nbOutputs, DataType const* inputTypes, DataType const* outputTypes, bool const* inputIsBroadcast,
bool const* outputIsBroadcast, nvinfer1::PluginFormat format, int32_t maxBatchSize) noexcept
{
try
{
PLUGIN_ASSERT(nbInputs == 2);
PLUGIN_ASSERT(nbOutputs == 4);
PLUGIN_ASSERT(inputDims[0].nbDims == 3);
PLUGIN_ASSERT(inputDims[1].nbDims == 2 || (inputDims[1].nbDims == 3 && inputDims[1].d[2] == 1));
PLUGIN_ASSERT(std::none_of(inputIsBroadcast, inputIsBroadcast + nbInputs, [](bool b) { return b; }));
PLUGIN_ASSERT(std::none_of(outputIsBroadcast, outputIsBroadcast + nbInputs, [](bool b) { return b; }));
mBoxesSize = inputDims[0].d[0] * inputDims[0].d[1] * inputDims[0].d[2];
mScoresSize = inputDims[1].d[0] * inputDims[1].d[1];
// num_boxes
mNumPriors = inputDims[0].d[0];
const int32_t numLocClasses = param.shareLocation ? 1 : param.numClasses;
// Third dimension of boxes must be either 1 or num_classes
PLUGIN_ASSERT(inputDims[0].d[1] == numLocClasses);
PLUGIN_ASSERT(inputDims[0].d[2] == 4);
mPrecision = inputTypes[0];
}
catch (std::exception const& e)
{
caughtError(e);
}
}
void BatchedNMSDynamicPlugin::configurePlugin(
DynamicPluginTensorDesc const* in, int32_t nbInputs, DynamicPluginTensorDesc const* out, int32_t nbOutputs) noexcept
{
try
{
PLUGIN_ASSERT(nbInputs == 2);
PLUGIN_ASSERT(nbOutputs == 4);
// Shape of boxes input should be
// Constant shape: [batch_size, num_boxes, num_classes, 4] or [batch_size, num_boxes, 1, 4]
// shareLocation == 0 or 1
const int32_t numLocClasses = param.shareLocation ? 1 : param.numClasses;
PLUGIN_ASSERT(in[0].desc.dims.nbDims == 4);
PLUGIN_ASSERT(in[0].desc.dims.d[2] == numLocClasses);
PLUGIN_ASSERT(in[0].desc.dims.d[3] == 4);
// Shape of scores input should be
// Constant shape: [batch_size, num_boxes, num_classes] or [batch_size, num_boxes, num_classes, 1]
PLUGIN_ASSERT(in[1].desc.dims.nbDims == 3 || (in[1].desc.dims.nbDims == 4 && in[1].desc.dims.d[3] == 1));
mBoxesSize = in[0].desc.dims.d[1] * in[0].desc.dims.d[2] * in[0].desc.dims.d[3];
mScoresSize = in[1].desc.dims.d[1] * in[1].desc.dims.d[2];
// num_boxes
mNumPriors = in[0].desc.dims.d[1];
mPrecision = in[0].desc.type;
}
catch (std::exception const& e)
{
caughtError(e);
}
}
bool BatchedNMSPlugin::supportsFormat(DataType type, PluginFormat format) const noexcept
{
#if NVBUG_3321606_WAR
return ((type == DataType::kFLOAT || type == DataType::kINT32) && format == PluginFormat::kLINEAR);
#else
return ((type == DataType::kHALF || type == DataType::kFLOAT || type == DataType::kINT32)
&& format == PluginFormat::kLINEAR);
#endif // NVBUG_3321606_WAR
}
bool BatchedNMSDynamicPlugin::supportsFormatCombination(
int32_t pos, PluginTensorDesc const* inOut, int32_t nbInputs, int32_t nbOutputs) noexcept
{
PLUGIN_ASSERT(nbInputs <= 2 && nbInputs >= 0);
PLUGIN_ASSERT(nbOutputs <= 4 && nbOutputs >= 0);
PLUGIN_ASSERT(pos < 6 && pos >= 0);
auto const* in = inOut;
auto const* out = inOut + nbInputs;
bool const consistentFloatPrecision = in[0].type == in[pos].type;
switch (pos)
{
case 0:
return (in[0].type == DataType::kHALF || in[0].type == DataType::kFLOAT)
&& in[0].format == PluginFormat::kLINEAR && consistentFloatPrecision;
case 1:
return (in[1].type == DataType::kHALF || in[1].type == DataType::kFLOAT)
&& in[1].format == PluginFormat::kLINEAR && consistentFloatPrecision;
case 2: return out[0].type == DataType::kINT32 && out[0].format == PluginFormat::kLINEAR;
case 3:
return (out[1].type == DataType::kHALF || out[1].type == DataType::kFLOAT)
&& out[1].format == PluginFormat::kLINEAR && consistentFloatPrecision;
case 4:
return (out[2].type == DataType::kHALF || out[2].type == DataType::kFLOAT)
&& out[2].format == PluginFormat::kLINEAR && consistentFloatPrecision;
case 5:
return (out[3].type == DataType::kHALF || out[3].type == DataType::kFLOAT)
&& out[3].format == PluginFormat::kLINEAR && consistentFloatPrecision;
}
return false;
}
char const* BatchedNMSPlugin::getPluginType() const noexcept
{
return kNMS_PLUGIN_NAMES[0];
}
char const* BatchedNMSDynamicPlugin::getPluginType() const noexcept
{
return kNMS_PLUGIN_NAMES[1];
}
char const* BatchedNMSPlugin::getPluginVersion() const noexcept
{
return kNMS_PLUGIN_VERSION;
}
char const* BatchedNMSDynamicPlugin::getPluginVersion() const noexcept
{
return kNMS_PLUGIN_VERSION;
}
void BatchedNMSPlugin::destroy() noexcept
{
delete this;
}
void BatchedNMSDynamicPlugin::destroy() noexcept
{
delete this;
}
IPluginV2Ext* BatchedNMSPlugin::clone() const noexcept
{
try
{
auto* plugin = new BatchedNMSPlugin(param);
plugin->mBoxesSize = mBoxesSize;
plugin->mScoresSize = mScoresSize;
plugin->mNumPriors = mNumPriors;
plugin->setPluginNamespace(mNamespace.c_str());
plugin->setClipParam(mClipBoxes);
plugin->mPrecision = mPrecision;
plugin->setScoreBits(mScoreBits);
plugin->setCaffeSemantics(mCaffeSemantics);
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
IPluginV2DynamicExt* BatchedNMSDynamicPlugin::clone() const noexcept
{
try
{
auto* plugin = new BatchedNMSDynamicPlugin(param);
plugin->mBoxesSize = mBoxesSize;
plugin->mScoresSize = mScoresSize;
plugin->mNumPriors = mNumPriors;
plugin->setPluginNamespace(mNamespace.c_str());
plugin->setClipParam(mClipBoxes);
plugin->mPrecision = mPrecision;
plugin->setScoreBits(mScoreBits);
plugin->setCaffeSemantics(mCaffeSemantics);
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
void BatchedNMSPlugin::setPluginNamespace(char const* pluginNamespace) noexcept
{
try
{
mNamespace = pluginNamespace;
}
catch (std::exception const& e)
{
caughtError(e);
}
}
char const* BatchedNMSPlugin::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
void BatchedNMSDynamicPlugin::setPluginNamespace(char const* pluginNamespace) noexcept
{
try
{
mNamespace = pluginNamespace;
}
catch (std::exception const& e)
{
caughtError(e);
}
}
char const* BatchedNMSDynamicPlugin::getPluginNamespace() const noexcept
{
return mNamespace.c_str();
}
nvinfer1::DataType BatchedNMSPlugin::getOutputDataType(
int32_t index, nvinfer1::DataType const* inputTypes, int32_t nbInputs) const noexcept
{
if (index == 0)
{
return nvinfer1::DataType::kINT32;
}
return inputTypes[0];
}
nvinfer1::DataType BatchedNMSDynamicPlugin::getOutputDataType(
int32_t index, nvinfer1::DataType const* inputTypes, int32_t nbInputs) const noexcept
{
if (index == 0)
{
return nvinfer1::DataType::kINT32;
}
return inputTypes[0];
}
void BatchedNMSPlugin::setClipParam(bool clip) noexcept
{
mClipBoxes = clip;
}
void BatchedNMSDynamicPlugin::setClipParam(bool clip) noexcept
{
mClipBoxes = clip;
}
void BatchedNMSPlugin::setScoreBits(int32_t scoreBits) noexcept
{
mScoreBits = scoreBits;
}
void BatchedNMSDynamicPlugin::setScoreBits(int32_t scoreBits) noexcept
{
mScoreBits = scoreBits;
}
void BatchedNMSPlugin::setCaffeSemantics(bool caffeSemantics) noexcept
{
mCaffeSemantics = caffeSemantics;
}
void BatchedNMSDynamicPlugin::setCaffeSemantics(bool caffeSemantics) noexcept
{
mCaffeSemantics = caffeSemantics;
}
bool BatchedNMSPlugin::isOutputBroadcastAcrossBatch(
int32_t outputIndex, bool const* inputIsBroadcasted, int32_t nbInputs) const noexcept
{
return false;
}
bool BatchedNMSPlugin::canBroadcastInputAcrossBatch(int32_t inputIndex) const noexcept
{
return false;
}
BatchedNMSBasePluginCreator::BatchedNMSBasePluginCreator()
{
mPluginAttributes.clear();
mPluginAttributes.emplace_back(PluginField("shareLocation", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("backgroundLabelId", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("numClasses", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("topK", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("keepTopK", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("scoreThreshold", nullptr, PluginFieldType::kFLOAT32, 1));
mPluginAttributes.emplace_back(PluginField("iouThreshold", nullptr, PluginFieldType::kFLOAT32, 1));
mPluginAttributes.emplace_back(PluginField("isNormalized", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("clipBoxes", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("scoreBits", nullptr, PluginFieldType::kINT32, 1));
mPluginAttributes.emplace_back(PluginField("caffeSemantics", nullptr, PluginFieldType::kINT32, 1));
mFC.nbFields = mPluginAttributes.size();
mFC.fields = mPluginAttributes.data();
}
char const* BatchedNMSPluginCreator::getPluginName() const noexcept
{
return kNMS_PLUGIN_NAMES[0];
}
char const* BatchedNMSDynamicPluginCreator::getPluginName() const noexcept
{
return kNMS_PLUGIN_NAMES[1];
}
char const* BatchedNMSBasePluginCreator::getPluginVersion() const noexcept
{
return kNMS_PLUGIN_VERSION;
}
PluginFieldCollection const* BatchedNMSBasePluginCreator::getFieldNames() noexcept
{
return &mFC;
}
IPluginV2Ext* BatchedNMSPluginCreator::createPlugin(char const* name, PluginFieldCollection const* fc) noexcept
{
try
{
gLogWarning << "BatchedNMSPlugin is deprecated since TensorRT 9.0. Use INetworkDefinition::addNMS() to add an "
"INMSLayer OR use EfficientNMS plugin."
<< std::endl;
NMSParameters params;
PluginField const* fields = fc->fields;
bool clipBoxes = true;
int32_t scoreBits = 16;
bool caffeSemantics = true;
std::set<std::string> requiredFields{
"shareLocation",
"backgroundLabelId",
"numClasses",
"topK",
"keepTopK",
"scoreThreshold",
"iouThreshold",
};
plugin::validateRequiredAttributesExist(requiredFields, fc);
for (int32_t i = 0; i < fc->nbFields; ++i)
{
char const* attrName = fields[i].name;
if (!strcmp(attrName, "shareLocation"))
{
params.shareLocation = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "backgroundLabelId"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.backgroundLabelId = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "numClasses"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.numClasses = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "topK"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.topK = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "keepTopK"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.keepTopK = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "scoreThreshold"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kFLOAT32);
params.scoreThreshold = *(static_cast<float const*>(fields[i].data));
}
else if (!strcmp(attrName, "iouThreshold"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kFLOAT32);
params.iouThreshold = *(static_cast<float const*>(fields[i].data));
}
else if (!strcmp(attrName, "isNormalized"))
{
params.isNormalized = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "clipBoxes"))
{
clipBoxes = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "scoreBits"))
{
scoreBits = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "caffeSemantics"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
caffeSemantics = *(static_cast<bool const*>(fields[i].data));
}
}
auto* plugin = new BatchedNMSPlugin(params);
plugin->setClipParam(clipBoxes);
plugin->setScoreBits(scoreBits);
plugin->setCaffeSemantics(caffeSemantics);
plugin->setPluginNamespace(mNamespace.c_str());
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
IPluginV2DynamicExt* BatchedNMSDynamicPluginCreator::createPlugin(
char const* name, PluginFieldCollection const* fc) noexcept
{
try
{
gLogWarning << "BatchedNMSPlugin is deprecated since TensorRT 9.0. Use INetworkDefinition::addNMS() to add an "
"INMSLayer OR use EfficientNMS plugin."
<< std::endl;
NMSParameters params;
PluginField const* fields = fc->fields;
bool clipBoxes = true;
int32_t scoreBits = 16;
bool caffeSemantics = true;
std::set<std::string> requiredFields{
"shareLocation",
"backgroundLabelId",
"numClasses",
"topK",
"keepTopK",
"scoreThreshold",
"iouThreshold",
};
plugin::validateRequiredAttributesExist(requiredFields, fc);
for (int32_t i = 0; i < fc->nbFields; ++i)
{
char const* attrName = fields[i].name;
if (!strcmp(attrName, "shareLocation"))
{
params.shareLocation = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "backgroundLabelId"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.backgroundLabelId = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "numClasses"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.numClasses = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "topK"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.topK = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "keepTopK"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
params.keepTopK = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "scoreThreshold"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kFLOAT32);
params.scoreThreshold = *(static_cast<float const*>(fields[i].data));
}
else if (!strcmp(attrName, "iouThreshold"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kFLOAT32);
params.iouThreshold = *(static_cast<float const*>(fields[i].data));
}
else if (!strcmp(attrName, "isNormalized"))
{
params.isNormalized = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "clipBoxes"))
{
clipBoxes = *(static_cast<bool const*>(fields[i].data));
}
else if (!strcmp(attrName, "scoreBits"))
{
scoreBits = *(static_cast<int32_t const*>(fields[i].data));
}
else if (!strcmp(attrName, "caffeSemantics"))
{
PLUGIN_VALIDATE(fields[i].type == PluginFieldType::kINT32);
caffeSemantics = *(static_cast<bool const*>(fields[i].data));
}
}
auto* plugin = new BatchedNMSDynamicPlugin(params);
plugin->setClipParam(clipBoxes);
plugin->setScoreBits(scoreBits);
plugin->setCaffeSemantics(caffeSemantics);
plugin->setPluginNamespace(mNamespace.c_str());
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
IPluginV2Ext* BatchedNMSPluginCreator::deserializePlugin(
char const* name, void const* serialData, size_t serialLength) noexcept
{
try
{
gLogWarning << "BatchedNMSPlugin is deprecated since TensorRT 9.0. Use INetworkDefinition::addNMS() to add an "
"INMSLayer OR use EfficientNMS plugin."
<< std::endl;
// This object will be deleted when the network is destroyed, which will
// call NMS::destroy()
auto* plugin = new BatchedNMSPlugin(serialData, serialLength);
plugin->setPluginNamespace(mNamespace.c_str());
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
IPluginV2DynamicExt* BatchedNMSDynamicPluginCreator::deserializePlugin(
char const* name, void const* serialData, size_t serialLength) noexcept
{
try
{
gLogWarning << "BatchedNMSPlugin is deprecated since TensorRT 9.0. Use INetworkDefinition::addNMS() to add an "
"INMSLayer OR use EfficientNMS plugin."
<< std::endl;
// This object will be deleted when the network is destroyed, which will
// call NMS::destroy()
auto* plugin = new BatchedNMSDynamicPlugin(serialData, serialLength);
plugin->setPluginNamespace(mNamespace.c_str());
return plugin;
}
catch (std::exception const& e)
{
caughtError(e);
}
return nullptr;
}
} // namespace nvinfer1::plugin
|