Fix ISliceLayer

This commit is contained in:
Marcos Luciano
2023-09-12 00:27:12 -03:00
parent d212d861cb
commit b2388fb3cb
9 changed files with 137 additions and 50 deletions

View File

@@ -10,10 +10,11 @@
#include "NvInfer.h"
#include "slice_layer.h"
#include "activation_layer.h"
nvinfer1::ITensor* shortcutLayer(int layerIdx, std::string activation, std::string inputVol, std::string shortcutVol,
std::map<std::string, std::string>& block, nvinfer1::ITensor* input, nvinfer1::ITensor* shortcut,
nvinfer1::INetworkDefinition* network);
nvinfer1::INetworkDefinition* network, uint batchSize);
#endif