Files
deepstream_yolo/nvdsinfer_custom_impl_Yolo/layers/batchnorm_layer.h
Marcos Luciano 07feae9509 Big update
2023-05-19 03:05:43 -03:00

21 lines
489 B
C++

/*
* Created by Marcos Luciano
* https://www.github.com/marcoslucianops
*/
#ifndef __BATCHNORM_LAYER_H__
#define __BATCHNORM_LAYER_H__
#include <map>
#include <vector>
#include "NvInfer.h"
#include "activation_layer.h"
nvinfer1::ITensor* batchnormLayer(int layerIdx, std::map<std::string, std::string>& block, std::vector<float>& weights,
std::vector<nvinfer1::Weights>& trtWeights, int& weightPtr, nvinfer1::ITensor* input,
nvinfer1::INetworkDefinition* network);
#endif