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.
1
vote
0answers
6 views
Performance prediction Mandelbrot set CUDA
I just finished the implementation of the Mandelbrot set in CUDA, probably not the most efficient but good enough to learn parallel programming in GPUs.
__global__
void ...
0
votes
0answers
8 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
24 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
26 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
25 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
19 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
12 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
14 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
0answers
19 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
31 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
12 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
23 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
15 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
33 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
30 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
22 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
26 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
42 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
36 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
45 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
46 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
29 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 ...
1
vote
0answers
37 views
How to write simple speed test app with CUDA?
Below is the code of a simple app that tests speed of my 4 core CPU with HT. I want to write as much similar app as possible that makes speed test of my GPU with CUDA functionality by using CUDA. ...
0
votes
1answer
20 views
Benchmark profiling
Let's say that I have an application benchmark to execute from the linux terminal. I wish to wrap a profiler around it so that I can gather information for the exeuction of the benchmark such as CPU ...
0
votes
1answer
33 views
Are floats guaranteed to be 4 bytes with CUDA?
I want to use cudaMemcpy to create a ones vector (1,...,1) so that I can do things like sum the rows/columns of a matrix or add a vector to a matrix with CUBLAS. The code will be run on different ...
0
votes
1answer
28 views
CUDA driver too old for Matlab GPU?
Ok,this is something am having problems with. I recently installed Matlab R2013a on a x86_64 Linux system running RHEL 5, attached to a Tesla S2050. I have never used the GPU functionality in Matlab ...
0
votes
1answer
31 views
CUDA 5.0 Header Files
I am struggling with someone's terribly written project and I'm trying to get it compiled ASAP... (best approach would be to do this correctly but time is an issue) ... anyways, they seem to have ...
0
votes
1answer
15 views
thrust::sort_by_key with device_ptr errors
I have a problem with sorting by key using device ptr (thrust::device_ptr< int>). This:
thrust::sort_by_key(dev_ptr_key,dev_ptr_key+noOfSelectedRows,dev_ptr_val,dev_ptr_val+noOfSelectedRows);
...
0
votes
0answers
18 views
Cuda5, Ubuntu 12.04, OpenCV cuDeviceGetAttribute Error
OpenCV had previously installed properly on my machine with a CUDA capable card. After installing the Cuda 5 toolkit, OpenCV fails to build from source with the following error, ...
0
votes
0answers
24 views
Enabling MSVC10 Platform toolset in VS2012 64bit project
I work with VS2012.But I am using MSVC10 compiler as some of libraries don't support MSVC11 compiler.I have VS210 express installed and in 32bit configuration project of VS2012 I can select it ...
1
vote
1answer
36 views
memory fragmentation in cuda
I am having a memory allocation problem which I can't understand. I am trying to allocate a char array in GPU (I am guessing it is probably a memory fragmentation issue).
here is my code,
...
0
votes
1answer
42 views
Race conditions despite atomicAdd functions (CUDA)?
I have a problem that is parallel on two levels: I have a ton of sets of (x0, x1, y0, y1) coordinate pairs, which are turned into variables vdx, vdy, vyy and for each of these sets I'm trying to ...
0
votes
1answer
87 views
Why does reverse this function not work
In the constructor I fill the array on the device side.
but now I want to execute reverse function on the array.
using namespace std;
#include <stdio.h>
#include <stdlib.h>
#include ...
0
votes
0answers
26 views
Load grayscale image into Cuda device
I need to do some calculations with the grayscale values of an image on a Cuda device. I figure that it is best to load the entire image to the device before doing the calculations. Right now what I'm ...
1
vote
0answers
43 views
Efficiently performing memory transactions in Matlab-like CPU->GPU assignments
I have implemented a Matrix library based on expression templates for both, device and host operations. I have implemented a Matlab-like syntax, so that I can execute CPU to GPU assignments of the ...
0
votes
0answers
27 views
Parallel differential evolution with cuda
I know how to implement differential evolution in C and I'm familiar with basics of programming with cuda. However, I need some help with its parallelization. flow chart:cudaDei (source: An Improved ...
0
votes
0answers
21 views
Nsight Visual Studio 2010 skips kernel breakpoints, detects wrong driver version
I'm using the Nsight 3.0 plugin with Visual Studio 2010 and CUDA 5.0.35. To debug, I select "Start Cuda Debugging" from the Nsight menu. Breakpoints in the kernel are skipped and I can't step ...
0
votes
0answers
15 views
Using CUDA's Nsight with GPUs of different compute capability
I want to use VS2010's Nsight debugging capabilities and have a GPU with compute capability 1.1 and another with compute capability 2.1, is this mix of devices ok? I suspect I'll get a couple of ...
0
votes
1answer
34 views
Proper use of cudaMalloc3D with cudaMemcpy
I'd like to send a 3D array src of size size in each dimension, flattened into a 1D array of size length = size * size * size, into a kernel, compute a result and store it in dst. However, at the ...
0
votes
0answers
40 views
Are there any CUDA native functions might be useful for optimization like Gradient Descent?
I will code my first relatively big CUDA project as Gradient Descent Optimization for machine learning purposes. I would like to get benefit from crowd wisdom about some useful native functions of the ...
0
votes
1answer
29 views
Cuda profiler says that my two kernels are expensive, however their execution time seems to be small
I use two kernels, let's call them A an B.
I run the CUDA profiler and this is what it returned:
The first kernel has 44% overhead while the second 20%.
However, if I decide to find out the ...
0
votes
1answer
50 views
Converting CUDA .cu file to PTX file
I am having problem converting .cu to .ptx. I am using nvcc as follows:
"C:\ Program Files\NVIDIA GPU Computing Toolkit\CUDA\v5.0\bin\nvcc" -ptx -ccbin "C:\ Program Files (x86)\Microsoft Visual ...
0
votes
1answer
26 views
How to query the current performance state of your GPU with CUDA?
Preferably directly via some CUDA API, or failing that via some 3rd-party software. I'm profiling some code which is running unusually slowly and just want to check there's not something funny going ...
1
vote
3answers
61 views
How to partly sort arrays on CUDA?
Problem
Provided I have two arrays:
const int N = 1000000;
float A[N];
myStruct *B[N];
The numbers in A can be positive or negative (e.g. A[N]={3,2,-1,0,5,-2}), how can I make the array A ...
4
votes
0answers
99 views
Why does CUDA code run so much faster in NVIDIA Visual Profiler?
A piece of code that takes well over 1 minute on the command line was done in a matter of seconds in NVIDIA Visual Profiler (running the same .exe). So the natural question is why? Is there something ...
0
votes
0answers
62 views
Bunch of cuComplex.h and cmath errors
I am trying to compile my code in VSC++ using arrayfire for porting the matrix multiplication to gpu. I am getting the following bunch of errors for all the source files.
What's happening! I am pretty ...
1
vote
0answers
55 views
Why does the first cudaMalloc take so much time and memory?
For instance
int *p;
cudaMalloc(&p, sizeof(int));
will take around 20secs and my process will typically gain 650MB+ (though always a slightly different amount) in memory usage in task manager. ...
0
votes
1answer
48 views
Combining CUDA with Python's ODEInt and Parallel Reduction
I'm a graduate student in biophysics, trying to program a protein aggregation model using PyCUDA and Scipy's ODEInt. Within the past two weeks, I've gotten the code running, but it's very slow. Let ...
0
votes
1answer
51 views
The low speedup of written CUDA code
I written two separate code for same program in CPU (C++) and CUDA. i don't know why speedup of CUDA code is less than CPU code.
I have three matrices H, E, F and operations are performed on these. ...
0
votes
1answer
34 views
What is (if any) the standard approach for designing out of core/ external memory algorithms?
I am looking for rules of thumb for designing algorithms where the data is accessed slowly due to limitations of disk speed, pci speed(gpgpu) or other bottleneck.
Also, how does one manage gpgpu ...
