darrenhsieh dc5f1924dc feat: support reid model with trt C++APIs
Summary: support reid model with tensorrt network definition APIs
2021-01-30 15:40:05 +08:00

15 lines
305 B
C++

#pragma once
#include <map>
#include "NvInfer.h"
#include "fastrt/struct.h"
using namespace nvinfer1;
namespace fastrt {
IScaleLayer* embedding_head(INetworkDefinition *network,
std::map<std::string, Weights>& weightMap,
ITensor& input,
const FastreidConfig& reidCfg);
}