Hi,
Unable to build the cuda sample application on jetson agx orin (using 5.1.3).
Cuda_samples_Build_Error.txt (333.1 KB)
Please help me on this error.
Hi,
Unable to build the cuda sample application on jetson agx orin (using 5.1.3).
Cuda_samples_Build_Error.txt (333.1 KB)
Please help me on this error.
Hi,
In your logs, there are some warnings but no error is found.
So all the sample binary should be generated.
Thanks.
Hi AastaLL,
Please find attached logs file. I am getting a below warning;
/usr/local/cuda-11.4/bin/…/targets/aarch64-linux/include/cub/util_cpp_dialect.cuh:142:13: warning: CUB requires at least C++14. C++11 is deprecated but still supported. C++11 support will be removed in a future release. Define CUB_IGNORE_DEPRECATED_CPP_DIALECT to suppress this message.
142 | CUB_COMPILER_DEPRECATION_SOFT(C++14, C++11);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Then it stuck here can’t proceed the cuda samples building. I am just stopping the sample building by entering the CTRL+C key. Then it is throwing a below error;
^Cnvcc error : ‘cicc’ died due to signal 2
make[1]: *** [Makefile:351: segmentationTree.o] Error 2
make: *** [Makefile:51: 6_Advanced/segmentationTreeThrust/Makefile.ph_build] Interrupt
nvidia@tegra-ubuntu:/usr/local/cuda/samples$
But it is not building the all samples. I am unable to find the Mandelbrot executable file in bin folder.
Please advise on this error.
Thanks!
Cuda_samples_Build_Error_250225.txt (80.9 KB)
Hi,
The Mandelbrot sample requires some third-party library.
Please try:
$ /usr/local/cuda/bin/cuda-install-samples-11.4.sh .
$ cd NVIDIA_CUDA-11.4_Samples/
$ cd 2_Graphics/Mandelbrot/
$ sudo apt-get install freeglut3 freeglut3-dev
$ make
$ ll ../../bin/aarch64/linux/release/Mandelbrot
-rwxrwxr-x 1 nvidia nvidia 1432976 Feb 26 08:48 ../../bin/aarch64/linux/release/Mandelbrot*
Thanks