cudaMallocHost(void **,size_t)”: 无法将参数 1 从“float **”转换为“void **”
后来发现是cuda头文件引用的不对:
报错引用的头文件:
#include "cuda_runtime_api.h"
改完后的头文件:
#include <cuda_runtime.h>
cuda引用的头文件:
#include <NvInfer.h>
// cuda_runtime
#include <cuda_runtime.h>
#include <cuda.h>
#include <math.h>
#include <stdio.h>
//#include <unistd.h>
#include <chrono>
#include <fstream>
#include <functional>
#include <iostream>
#include <memory>
#include <string>
#include <vector>