-
Hello, I came to this github repo from Ridgerun guide https://developer.ridgerun.com/wiki/index.php/Yocto_Support_for_NVIDIA_Jetson_Platforms/ . Although I'm able to build the image, adding NV packages brings some issues for me:
I'm using kirkstone branch for all layers and Orin AGX devkit. Thanks for support. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 10 replies
-
For For TensorRT, I suspect that the wiki page is just a bit out of date. To provide more control over exactly what packages get installed, and to maximize the number of packages that get built from sources, there are different recipes for the different bits of TensorRT that you might need. Take a look at the recipes for more information. Unlike JetPack, which dumps a huge blob containing as much of NVIDIA's software on your device as possible so you can play with it, the goal here is to let you pick and choose exactly what you need for your product/application. Because of that basic difference, you won't find a direct 1:1 mapping between JetPack packages and those generated by the recipes here. |
Beta Was this translation helpful? Give feedback.
-
@CHNtentes if you haven't noticed it already you may want to look at the repo at https://github.com/OE4T/tegra-demo-distro which is a fully working build setup with some customized images. The demo images there include a packagegroup-demo-basetests which includes cuda-samples. Regarding how these images are tested you can see previous release tests and test results in this spreadsheet. See the CUDA tests there for the tests we currently have for cuda-samples. Contributions in terms of running or adding tests are welcome! |
Beta Was this translation helpful? Give feedback.
For
cuda-samples
, by reading the recipe you'll see that it builds only a couple of the sample programs, and they get installed in/usr/bin/cuda-samples/
.For TensorRT, I suspect that the wiki page is just a bit out of date. To provide more control over exactly what packages get installed, and to maximize the number of packages that get built from sources, there are different recipes for the different bits of TensorRT that you might need. Take a look at the recipes for more information.
Unlike JetPack, which dumps a huge blob containing as much of NVIDIA's software on your device as possible so you can play with it, the goal here is to let you pick and choose exactly what you need for your…