CUDA is a parallel computing platform and programming model for Nvidia GPUs (Graphics Processing Units). CUDA provides an interface to Nvidia GPUs through a variety of programming languages, libraries, and APIs.
0
votes
0answers
5 views
CUDA core pipeline
I am following this article about a prediction model for GPU. In page 5 second column almost at the end they state
One has to finally take care of the fact that each of the Nc cores(SPs) in an SM ...
0
votes
0answers
8 views
“fatal error : Failed to open output file” when compiling CUDA under Win 7
whenever I try to compile a CUDA program (even the samples) on Windows 7 (64 Bit), using VisualStudio 2010 and CUDA 5.0, I get the error message below and nvcc crashes:
1>------ Erstellen gestartet: ...
0
votes
0answers
13 views
CUDA | Cannot get high throughput using hostalloc
I'm currently learning CUDA, and I'm now focussing on the memory copy between host and device throughput.
Here is a little program (see notes below) :
int NX=1000;
int NY=800;
int size=NX*NY;
...
3
votes
0answers
29 views
Strange behavior when detecting global memory
After reading this question: "How to differentiate between pointers to shared and global memory?", I decided to try isspacep.local, isspacep.global and isspacep.shared in a simple test program.
The ...
0
votes
0answers
25 views
cuda: launch of kernels depending on a counter updated on the device
I wrote an implementation of the growcut segmentation algorithm in cuda, using a device with compute capability 2.1. It works awesomely, but I'd like to let it run without doing a device to host ...
0
votes
1answer
18 views
OpenCV 2.4.4 wth CUDA: registerPageLocked fails
I am trying to page-lock a Mat that has already been created.
Consider the following example code:
...
Mat cpuGray;
GpuMat gpuGray;
cv::cvtColor (cpuColor, cpuGray, CV_BGR2GRAY);
...
0
votes
1answer
19 views
Event Sampling in Tesla GPU
I am trying to work with the CUPTI library in CUDA to read some performance counters like instructions executed, memory access etc. When executing the sample provided with CUPTI installation ...
0
votes
0answers
24 views
Extending the 2d matrix mult to 3d
I have tried to extend the common 2d matrix multiplication example to do multiple simultaneous multiplications using the third dimension. Apart from suggesting the use of other approaches such as ...
5
votes
1answer
46 views
How to differentiate between pointers to shared and global memory?
In CUDA, given the value of a pointer, or the address of a variable, is there an intrinsic or another API which will introspect which address space the pointer refers to?
2
votes
0answers
30 views
Is it possible to deallocate memory for the N last elements of a thrust::device_vector without using resize?
I'm using a device_vector in order to store information about an array of user input data. This information is necessary in order to speed things up when I call the second kernel, which runs the main ...
0
votes
2answers
32 views
Can two blocks be executed in the same warp?
From the CUDA C programming guide:
The threads of a thread block execute concurrently on one
multiprocessor, and multiple thread blocks can execute concurrently on
one multiprocessor. As ...
0
votes
1answer
37 views
CUDA profiling: how does it work?
Can anyone explain how the profiler works. How it measures all the time , instructions etc given the executable. I know how to run a profiler. I wanted to know its background working.
I want to ...
2
votes
0answers
37 views
Generating random numbers from various distributions in CUDA
I am playing around with doing MCMC on the GPU, and need implementations for various samplers, written for CUDA.
Most of the posts I've seen on StackOverflow relate to uniform, binomial, and normal ...
0
votes
0answers
28 views
CUDA profiling : source code instrumentation
hey I am a newcomer to the CUDA world. I'd be grateful for some help with a simple question.
I wanted to know if cuda compiler nvcc's source code is available. I have been searching for it.
I wanted ...
-1
votes
1answer
35 views
Segmentation Fault CUDA-C
I am using CUDA to add two matrices, and to give their result in another matrix. I wish to make use of shared memory feature, and for this, I wrote the following:
#include <stdio.h>
#include ...
0
votes
1answer
22 views
Determining number of warps allowed in CUDA SM
So if a streaming multiprocessor can allow maximum X threads, while each block in the SM allows Y threads, how many warps can we have in a block and how many warps can we have in a SM?
Here is my ...
-1
votes
0answers
74 views
Does anyone know why this cuda code is access out-of-bounds memory?
I'm a noob at cuda code, and I'm trying to perform matrix mutiplication using the GPU, but the problem I'm having is that my code accesses memory that it shouldn't be accessing. That means that I Must ...
3
votes
2answers
72 views
CUDA branch divergence doesn't make any differences
I'm trying to learn CUDA by myself, and I'm now into the issue of branch divergence. As far as I understand, this is the name given to the problem that arises when several threads in a block are said ...
1
vote
1answer
50 views
Memory layout mismatching between CPU and GPU code with CUDA
I'm experiencing a very weird situation. I have this template structures:
#ifdef __CUDACC__
#define __HOSTDEVICE __host__ __device__
#else
#define __HOSTDEVICE
#endif
template <typename T>
...
0
votes
1answer
43 views
Does multiProcessorCount gives the number of streaming multiprocessors?
I hardly understand what the value given by the multiProcessorCount property represent, due to the fact that I experience difficulties in grasping the CUDA architecture.
I'm sorry if some of the ...
1
vote
1answer
23 views
Cuda/PyCuda - Large matrix traversal and block/grid size
I am working on something that has highlighted the fact I don't have a firm grasp of how blocks and grids work in cuda. I have a 1000x10 matrix that I would like to traverse and fill in each element ...
-3
votes
1answer
37 views
what's the difference between a thread in a block and a warp(32 threads)?
I have written a program for the string matching test,to test the performance vs cpu.
I just call the kernel by <1,1>,one block which contains one thread, the time is 430ms, and then I use one ...
-3
votes
0answers
28 views
CUDA Python implementation of hamming distance [closed]
I am able to calculate the hamming distance between two strings using python but wanted to know if anyone has tried implementing the same in any CUDA based python implementation e.g. using CUDAMat, ...
0
votes
0answers
29 views
Is it possible to use an array of bits or something like a std::bitset in CUDA?
I have an input array that is given to a kernel. Each thread works with one value of the array and either changes the value or doesn't change it at all according to an algorithm.
I would like to find ...
0
votes
0answers
42 views
Large array scan using cuda slower than sequential scan on CPU
I am trying to do a large array scan using cuda. But the cuda code runs slower than CPU. How do I improve the performance? I have attached the code below.
If I try to avoid bank conflicts the cuda ...
1
vote
1answer
38 views
Cuda matrix multiplication gives wrong answer
Update!
My current code doesn't check for out of bounds memory access. When I run the cuda memcheck, it says memory access is bad even for matrices of just 2 by 2! I'm accessing memory where I ...
-1
votes
1answer
29 views
Can you use cublasDdot() to use blas operations in non-GPU memory?
So I have a code that performs matrix multiplicaiton, but the problem is it returns just zeroes when I use the library -lcublas and the compiler nvcc; however, the code runs great with just a few ...
0
votes
1answer
31 views
A mix of c++ and cublas code isn't compiling
So I have this code that's suppose to compute the dot product of a matrix in different ways (one of which is to use blas in a c++), but when I try to use nvcc to compile the code, it doesn't work and ...
0
votes
1answer
29 views
Count the number of cycles in a CUDA kernel
How can I count the number of cycles performed by a function like the following. Should I count straight forward the number of sums and muls and divs? Where can I check how many cycles an addition ...
0
votes
1answer
35 views
Share GPU buffers across different CUDA contexts
Is it possible to share a cudaMalloc'ed GPU buffer between different contexts (CPU threads) which use the same GPU? Each context allocates an input buffer which need to be filled up by a ...
0
votes
1answer
38 views
Max GPU kernel function only work with one block
using namespace std;
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
const int threadsPerBlock = 256;
const int N = 40000;
void generateArray(double *data, int count) {
...
0
votes
0answers
58 views
Excessive Kernel Launches on Context Creation
Recently I began extending a very boost dependent project to use CUDA for its innermost loop. I thought it would be worth posting here about some odd behaviour I've been seeing though. Simply ...
2
votes
2answers
33 views
Cuda gridDim and blockDim
I got what blockDim is..
but i have a problem with gridDim. Blockdim gives the size of the block but what is gridDim. On the Internet it says gridDim.x gives the number of blocks in the x cordinate.
...
0
votes
0answers
33 views
Cuda handling arrays of different sizes within one kernel
So I have a problem that needs to do a couple of nested loops like this
for j=0:N
do
var=value1_j-value2_j //both of this values depend on the value of j
array[j]=malloc(var)
for i=0:var
...
0
votes
1answer
16 views
GPU Utilization
I have been using NVML library to get the values of graphics and memory utilization for
Rodinia benchmark suite. I observe that with different frequencies, the utilization of the same application ...
0
votes
0answers
23 views
Difference Equation/Exponential Moving Average Filter on NVidia Fermi GPU
My question:
What would be the most efficient way to do this calculation on the GPU? How do I fix my math problem?
Background information:
I am working on a GTX 570.
I have been teaching myself ...
-1
votes
1answer
34 views
Bisection Method on Cuda
i was trying to implement the Bisection Method on CUDA, this method is capable to aproximate the eigenvalues from an aplication, Bisection Method, but when i try to make some comparisons on the CUDA ...
0
votes
1answer
34 views
Cuda - not reversing
using namespace std;
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
const int threadsPerBlock = 256;
const int blocksPerGrid = 1024;
const int N = 64;
__global__ void ...
0
votes
1answer
14 views
QUADRO SDI SDK helps to work on Gpu memory without Host memory?
I will have quadro 4000 with SDI IO cards and with this i want to process video camera output with gpu(cuda) but the main problem is; this is real time process so i don't want to send data to host ...
0
votes
1answer
32 views
CUDA fmod - calling a __host__ function from a __global__ function is not allowed
I'm compiling a CUDA 5 project with VS2012 and I'm receiving this error:
error : calling a __host__ function("fmod<float, int> ") from a __global__ function is not allowed
The compiler is ...
0
votes
0answers
21 views
Incorrect blockDim and line number in crash log?
I'm testing a kernel with a variety of block sizes. It works fine, but Nsight reports a strange error:
================================================================================
CUDA Memory ...
0
votes
2answers
36 views
Dependency of a matrix in device
Suppose that have a matrix 6*8 (in below picture) & considered a thread for each cell. How to implement this matrix in device that first t1 value computed, after that t2 values computed, t2 values ...
2
votes
1answer
33 views
How to include timing for host functions in NVIDIA's visual profiler?
I have a program in which I try to overlap a host functions with a GPU kernel. To check to what extend the host function overlaps with the GPU kernel, I am using NVIDIA's visual profiler. However, the ...
0
votes
0answers
27 views
weird display graphics behavior after debugging simple cuda app: random colored pixel
I'm experiencing a weird behavior on my display graphics after debugging a simple CUDA program. It executed well, the thing only happens when debugging with cuda-gdb. When the debugging session is ...
3
votes
1answer
38 views
how to use cuda with opencv on ubuntu 11.10
I would like to run surfgpu on ubuntu .But do not know how to write cmakelists.I have installed the CUDA 4.2 SDK and Toolkit, and C inside the program can run.My development environment is Qt.ubuntu ...
0
votes
1answer
45 views
Cudamemcpy function usage
How will the cudaMemcpy function work in this case?
I have declared a matrix like this
float imagen[par->N][par->M];
and I want to copy it to the cuda device so I did this
float ...
0
votes
2answers
39 views
How to define a global memory array at device code and pass the value to host after execution?
I try to create a device global memory array in the kernel code and after the exection is finished, pass the array content to host memory. Is it possible to create a global memory array at device code ...
2
votes
1answer
52 views
Do precalculated parameters aid performance?
For instance, if I'm operating on an m x n matrix I'll most likely need to pass m and n to my kernel.
If I also need to know the total number of points N = m*n, should I pass N as a parameter (and ...
-3
votes
1answer
53 views
Best resources to learn about making a video codec [closed]
For one of my own projects, I am looking at building my own video codec (this is not a homework project, I would like the finished article to be professional quality). As a start I am dissecting the ...
0
votes
1answer
31 views
How can i reverse an array in multiple-blocks with just one thread?
i need to create an array which takes two arguments: array and its size
__global__ void reverseArray(int *data, int size){
int tid = blockIdx.x// Total blocks
}
How can i reverse array with ...

