| 530 | } |
| 531 | |
| 532 | void BatchedNMSPlugin::setPluginNamespace(char const* pluginNamespace) noexcept |
| 533 | { |
| 534 | try |
| 535 | { |
| 536 | mNamespace = pluginNamespace; |
| 537 | } |
| 538 | catch (std::exception const& e) |
| 539 | { |
| 540 | caughtError(e); |
| 541 | } |
| 542 | } |
| 543 | |
| 544 | char const* BatchedNMSPlugin::getPluginNamespace() const noexcept |
| 545 | { |
no test coverage detected