Top "Gpu" questions

Acronym for "Graphics Processing Unit". For programming traditional graphical applications, see the tag entry for "graphics programming". For general-purpose programming using GPUs, see the tag entry for "gpgpu". For specific GPU programming technologies, see the popular tag entries for "opencl", "cuda" and "thrust".

CUDA runtime error (59) : device-side assert triggered

I have access to Tesla K20c, I am running ResNet50 on CIFAR10 dataset... Then I get the error as: …

gpu pytorch
Fastest SVM implementation usable in Python

I'm building some predictive models in Python and have been using scikits learn's SVM implementation. It's been really great, easy …

python machine-learning gpu svm scikit-learn
How can I test for OpenCL compatibility?

I have a MacBook Pro 13' with an integrated Intel HD 3000 and a i7 core. I have to use Parallel …

macos opencl gpu osx-lion
Convert IplImage to CvMat

Here is the gpu surf code: #include <iostream> #include <iomanip> #include "opencv2/contrib/contrib.hpp" #include "…

opencv cuda gpu surf iplimage
Tensorflow: Cuda compute capability 3.0. The minimum required Cuda capability is 3.5

I am installing tensorflow from source (documentation). Cuda driver version: nvcc: NVIDIA (R) Cuda compiler driver Cuda compilation tools, release 7.5, …

python tensorflow gpu bazel
Max number of threads which can be initiated in a single CUDA kernel

I am confused about the maximum number of threads which can be launched in a Fermi GPU. My GTX 570 device …

cuda gpu thrust
what is XLA_GPU and XLA_CPU for tensorflow

I can list gpu devices sing the following tensorflow code: import tensorflow as tf from tensorflow.python.client import device_…

python tensorflow gpu
nvidia-smi Failed to initialize NVML: GPU access blocked by the operating system

when asking for nvidia-smi it gives this error: Failed to initialize NVML: GPU access blocked by the operating system other …

cuda gpu nvidia
Can/Should I run this code on a GPU?

I'm working on a statistical application containing approximately 10 - 30 million floating point values in an array. Several methods performing different, …

c++ c cuda parallel-processing gpu
When is CUDA's __shared__ memory useful?

Can someone please help me with a very simple example on how to use shared memory? The example included in …

c cuda gpu