贤者之路,Tensorrt的int8 calibration创建

本文介绍了TensorRT中INT8量化的重要性,特别是针对GPU计算板卡的加速。要实现INT8加速,必须先创建calibration文件。通过编写.h和.cpp文件,继承IInt8EntropyCalibrator类,可以生成Int8 table文件。核心在于实现getBatchSize()和getBatch()函数,这两个函数是校准过程的关键步骤。
摘要由CSDN通过智能技术生成

【INT8 Calibration】

无论哪块GPU计算板卡都能够支持Int8的加速,但需要事先生成 calibration文件,下面是.h .cpp分别继承IInt8EntropyCalibrator类,用于创建Int8 table文件

#pragma once
#include "NvInfer.h"
#include "NvCaffeParser.h"
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include "util.h"

using namespace nvinfer1;
using namespace nvcaffeparser1;


class YoloInt8 : public IInt8EntropyCalibrator
{
public:
	YoloInt8() {}
	virtual ~YoloInt8() {};
	
    // ======================== 初始化实现 ==============================//

	int init(const char* inDir, const char* outDir, int batch, int maxBatch);
	
    // ======
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值