[TensorRT] Assertion `size >= bsize && "Mismatch between allocated memory size and expected size of serialized engine."'
|2020. 5. 18. 14:31
728x90
반응형
아래와 같은 에러는 TensorRT 7.0 버전에서 만든 Engine 을 TensorRT 7.0 미만의 버전에서 사용하였을 때 나는 에러이다.
해당하는 TensorRT 버전에 맞게 끔 다시 Engine 을 생성해서 Deserialization 을 시도해야한다.
python3: engine.cpp:868: bool nvinfer1::rt::Engine::deserialize(const void*, std::size_t, nvinfer1::IGpuAllocator&, nvinfer1::IPluginFactory*): Assertion `size >= bsize && "Mismatch between allocated memory size and expected size of serialized engine."' failed.
Aborted (core dumped)
728x90
반응형
'삽질 기록' 카테고리의 다른 글
C++ 환경에서 OpenCV 3.4.0 의 resize 사용 시 나타나는 문제 (0) | 2020.07.01 |
---|---|
Visual Studio Code 에서 Tab 키 안될 때 (0) | 2020.06.30 |
[Pytorch] torch.cuda.is_available() is False (5) | 2020.04.17 |
[Linux] error mounting (0) | 2019.12.24 |
[TensorFlow] nvcc error : 'cudafe++' died with status 0xC0000005 (ACCESS_VIOLATION) (0) | 2019.12.09 |