Environment:
- OS: Windows Operating System
- TensorRT Version: TensorRT-10.3.0.26
- NVIDIA CUDA Version: 12.6
- cuDNN Version: 9.8
- GPU: RTX 3050ti laptop GPU
Issue Description:
I am encountering an "Access Violation Error" (0xC0000005)
at nvinfer_10.dll
during the execution of the following line of code:
nvinfer1::IExecutionContext* context = engine->createExecutionContext();
All Code:
nvinfer1::ICudaEngine* engine = loadEngine(engineFilePath);
if (engine) {
cout << "OK" << endl;
}
else {
cerr << "Error!" << endl;
return -1;
}
nvinfer1::IExecutionContext* context = engine->createExecutionContext();
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744349861a4569909.html
评论列表(0条)