openppl-public / ppl.cv

ppl.cv is a high-performance image processing library of openPPL supporting various platforms.
Apache License 2.0
484 stars 108 forks source link

[BUG] Fix missing `sm_53` for Jetson Nano #85

Closed PeterH0323 closed 2 years ago

PeterH0323 commented 2 years ago

Motivation

When using Jetson Nano to install mmdeploy and use SDK to predict, it will crash.

6120ce8a2c0497363bece7910adf98d

Modification

cuda.cmake in pplcv was missing sm_53.

According to website https://en.wikipedia.org/wiki/CUDA , it shows that the minimux version of cuda support sm_53 is cuda 7.5. So I add it in the cuda.cmake.

image

After this modifiy, it work.

image

releated PR MMDeploy PR#407