CUDA-PointPillars icon indicating copy to clipboard operation
CUDA-PointPillars copied to clipboard

How to modify this reipo to make it work on amd64 computer?

Open HilbertXu opened this issue 3 years ago • 4 comments

Hi,

thanks for your amazing work! Could you please tell me which part of this repo should be modified if I want to deploy this system on amd64 computer?

HilbertXu avatar Dec 04 '21 16:12 HilbertXu

@HilbertXu Hey, for me I just modified the CMakeLists.txt to know the cuda and tensorrt on my laptop:

include_directories(
    /usr/local/cuda/include
    /home/travis/packages/TensorRT-7.1.3.4/include
    ../include/
    ../include/plugin/
)

link_directories(
    /usr/local/cuda/lib64
    /home/travis/packages/TensorRT-7.1.3.4/lib
)

jcuic5 avatar Dec 07 '21 21:12 jcuic5

@jcuic5 Hey, thanks for your reply, I tested your config, and i works fine? thanks!

HilbertXu avatar Dec 10 '21 15:12 HilbertXu

trt_infer: Assertion failed: cublasStatus == CUBLAS_STATUS_SUCCESS ../rtSafe/cublas/cublasLtWrapper.cpp:279 Aborting... trt_infer: ../rtSafe/cublas/cublasLtWrapper.cpp (279) - Assertion Error in getCublasLtHeuristic: 0 (cublasStatus == CUBLAS_STATUS_SUCCESS) : engine init null! How to solve this problem

stidk avatar Feb 28 '22 07:02 stidk

trt_infer: Assertion failed: cublasStatus == CUBLAS_STATUS_SUCCESS ../rtSafe/cublas/cublasLtWrapper.cpp:279 Aborting... trt_infer: ../rtSafe/cublas/cublasLtWrapper.cpp (279) - Assertion Error in getCublasLtHeuristic: 0 (cublasStatus == CUBLAS_STATUS_SUCCESS) : engine init null! How to solve this problem

for me, fixed by install CUDA 10.2 patch 1 https://developer.nvidia.com/cuda-10.2-download-archive?target_os=Linux&target_arch=x86_64&target_distro=Ubuntu&target_version=1804&target_type=runfilelocal

chasingw avatar Jun 07 '22 08:06 chasingw