| 22 | namespace nvcaffeparser1 |
| 23 | { |
| 24 | ILayer* parseBNLL(INetworkDefinition& network, const trtcaffe::LayerParameter& msg, CaffeWeightFactory& /* weightFactory */, BlobNameToTensor& tensors) |
| 25 | { |
| 26 | if (!checkBlobs(msg, 1, 1)) |
| 27 | { |
| 28 | return nullptr; |
| 29 | } |
| 30 | return network.addActivation(*tensors[msg.bottom(0)], ActivationType::kSOFTPLUS); |
| 31 | } |
| 32 | } //namespace nvcaffeparser1 |
nothing calls this directly
no test coverage detected