cuda-samples icon indicating copy to clipboard operation
cuda-samples copied to clipboard

Samples for CUDA Developers which demonstrates features in CUDA Toolkit

Results 191 cuda-samples issues
Sort by recently updated
recently updated
newest added

I build cuda samples install by cuda installer,then I build nvJPEG_encode success on my platform: Driver 440.82 CUDA Version:10.2,I run success by call: `./nvJPEG_encoder -i src/ -o out/ -q 100...

When compiling and running the simpleCUDA2GL sample on windows 10 (20H2), using Visual Studio 16.8.4, this is the output: ``` (Interactive OpenGL Demo) GPU Device 0: "Turing" with compute capability...

```shell $ docker run --rm -it --gpus=all nvcr.io/nvidia/k8s/cuda-sample:nbody nbody -gpu -benchmark Run "nbody -benchmark [-numbodies=]" to measure performance. -fullscreen (run n-body simulation in fullscreen mode) -fp64 (use double precision floating...

Doesn't the Vulkan spec require an ownership transfer to/from VK_QUEUE_FAMILY_EXTERNAL?

I wrote a rendering function and got the image(`uchar *`) stored on the gpu. How to display the image directly from this data instead of copy to the cpu and...

I am working on a Data Science project which needs CUDA at the back-end. I want to know whether I can run an R script inside the CUDA kernel. I...

There is a small typo in Samples/matrixMulDrv/matrixMulDrv.cpp. Should read `simpler` rather than `simplier`. Semi-automated pull request generated by https://github.com/timgates42/meticulous/blob/master/docs/NOTE.md

Are there any classical machine learning, image segmentation algorithm implementation available in CUDA after the removal of GrabCut? I browsed through NPP found that GrabCut has been deprecated. http://docs.nvidia.com/cuda/cuda-samples/index.html#grabcut-with-npp I...

Currently it is being compared to NPP_SUCCESS. While _technically_ these are both 0, they are from different enums/definitions, so it should be compared to the correct type.

There are incorrect and unnecessary calls to nppiFree in two of the sample NPP applications (box filter and canny edge detector). The device memory for the image will be automatically...