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
22 views
CUDA issue with Threads vs Tasks to complete
I am having a problem and I will do my best to describe it here. I need to evaluate a set of points against other points in the set and I let the user choose how many threads and blocks to do so. So ...
1
vote
1answer
23 views
Passing a Struct to a kernel in cudafy.net
I'm having some issues allocating a struct, which contains several arrays, to the GPU. In the 2nd code block im getting an error with:
SimpleDataStructure[] dev_SDS = _gpu.CopyToDevice(SDS);
Does ...
0
votes
0answers
24 views
Multiple kernels concurrency problems + MemcpyToArrayAsync() incorrect stream
I am currently developing an application in CUDA and I have some questions regarding to concurrency. The problem is I can not achieve a concurrent execution of two kernels. I have checked the card is ...
1
vote
2answers
42 views
Maximum number of resident threads per multiprocessor VS. Maximum number of resident blocks per multiprocessor
I'm running an issue on my K20 about resources with concurrent kernel execution. My streams only got a little overlap and then I thought this might because of a resources limitation. So I referred to ...
3
votes
1answer
59 views
Anaconda's NumbaPro CUDA Assertion Error
I am trying to use NumbaPro's cuda extension to multiply large array matrixes. What I want in the end is to multiply a matrix of size NxN by a diagonal matrix that would be fed in as a 1D matrix ...
2
votes
1answer
51 views
Efficiently Get Random Numbers in Range on GPU
Given a uniformly distributed random number generator in the range [0, 2^64), is there any efficient way (on a GPU) to build a random number generator for the range [0, k) for some k < 2^64?
Some ...
0
votes
0answers
34 views
CUDA Space-filling curves and dividing work between processors
I've modified a CUDA app which operates on large 2D and 3D arrays to use a linear Z-curve scheme to improve cache utilization.
(The problem in question updates each element in an array based on ...
1
vote
1answer
30 views
Linking Cuda in C++ issue
I've searched existing questions, but I can't seem to solve this.
I have a blur_mask.cc file with:
#include <iostream>
#include <ctime>
#include <opencv2/highgui/highgui.hpp>
...
0
votes
0answers
63 views
GPU Computing; String Manipulation
I am attempting to optimize current C++ CPU code for GPU computing. The CPU intensive bits are purely string manipulation, and I've posted the code. I'm a little lost on where to start but have ...
0
votes
0answers
23 views
CUDA + OpenGL. Unknown code=4(cudaErrorLaunchFailure) error
I am doing a simple n-body simulation on CUDA, which then I am trying to visualize with OpenGL.
After I have initialitzed my particle data on the CPU, allocated the respective memory and transfered ...
-4
votes
0answers
33 views
is this wise for someone who is interested in computational neuroscience and computer vision to train in cuda and other hpc programming model? [closed]
I am a BS student and looking for my research interest.It seems my fields of interest is wide
and I am looking for a way to converge them in to a single filed
thank you in advance
0
votes
0answers
28 views
Handle Metadata load for interlaced pictures using CUDA-C
For interlaced pictures, I am loading the macroblock (MB) metadata for the two fields. The data is processed on GPU with 1 cuda block as 4 x 2 MB's actually (4+1 x 2+1) MB data including padding.
If ...
0
votes
1answer
32 views
How to pass depth buffer from OGRE to CUDA?
I am using OGRE for rendering some objects. At every frame, I would like to pass the resulting depth buffer to CUDA for running some kernels on it and computing a result.
How can I achieve this? How ...
0
votes
1answer
43 views
Counting occurrences of specific events in CUDA kernels
Problem
I am trying to find the best way to count how many times my program ends up in some specific branches of my CUDA kernels. The idea is that some events should nearly never happen, but since ...
1
vote
1answer
40 views
Benefit of splitting a big CUDA kernel and using dynamic parallelism
I have a big kernel in which an initial state is evolved using different techniques. That is, I have a loop in the kernel, in this loop a certain predicate is evaluated on the current state and on the ...
-2
votes
0answers
54 views
Passing host function pointer to device function for CUDA computation
I want to have something like a plugin system. The thing is, that I have some functions implemented, that should be called in a device function. Atm I am using a switch to set the existing functions. ...
-1
votes
1answer
40 views
Is this Sobel filtering on the GPU performance ok?
I have a CUDA - related question for you :).
Since I am relatively new to using CUDA I would like to know if this "performance" is ok, or not.
I am using C# and Cudafy.Net!
I have a grayscale image ...
0
votes
1answer
34 views
Cuda and/or OpenGL for geometric image transformation
My question concerns the most efficient way of performing geometric image transformations on the GPU. The goal is essentially to remove lens distortion from aquired images in real time. I can think of ...
1
vote
1answer
48 views
What is the optimal memory data structure for a 3D triangulated mesh in CUDA?
I'm trying to calculate a certain statistic around each point of a triangulated mesh. The function that does the calculation itself accepts as input a point (6 floats: x,y,z coordinates; nx,ny,nz ...
1
vote
1answer
54 views
Matrix inverse usng linear system solver through cublas , cublasCreate exception or something else
I'm trying to inverse a matrix using linear equation solver through cublas CUDA library.
The original equation is in form of:
Ax = B = I
I - identity matrix
A - The matrix I'm trying to inverse ...
0
votes
1answer
44 views
CUDA C: Kernel outputs bad results
first of all I want to say that this is not a homework assignment and I'm just beginning with CUDA.
I'm trying to run the following code to add 2 vectors... The thing is that after every run the ...
0
votes
0answers
35 views
Memory conflict in CUDA matrix multiplication using Thrust
I wrote a code to multiply two matrices, and it works when I use matrices of smaller sizes like 100 X 100, and even 5000 X 5000. However, when I use for 10000 X 10000 matrix, I get
...
0
votes
0answers
20 views
cuda samples not work [closed]
I install cuda-5 tookit on Ubuntu 12.04 in my pure new Computer. The installation went successfully, but when I ran samples, it gives such problems:
...
-1
votes
1answer
67 views
OpenCL vs CUDA performance on Nvidia's device
I coded a program to create a color lookup table. I did it in CUDA and OpenCL, from my point of view both programs are pretty much the same, i.e. use the same amount of constant memory, global memory, ...
1
vote
1answer
26 views
CUDA compiler macro to use on host code
Is there a CUDA macro that may be used on host code to print which version of nvcc I am using? I know that nvcc -V should be enough by typing it on a terminal (linux) or in a harder way make the ...
0
votes
2answers
67 views
Why does changing the block and grid sizes have such great impact on runtime?
I am working on some cuda tutorial converting a RGBA picture to greyscale.
But I couldn't figure out why changing the blockSize and gridSize makes a X33 time improvment.
__global__
void ...
0
votes
0answers
28 views
How to find the memory boundary of GPU global memory?
Numerous tutorial says we need to coalesce the memory access pattern along the boundary. The question is how do I know the boundary of my global memory.
Say I have a global memory allocated by:
...
0
votes
1answer
47 views
Can GPU counters be read transparently to the application code
I am trying to profile the CUDA rodinia benchmarks executing on a GTX 650.
I am using the code /usr/local/cuda-5.0/extras/CUPTI/samples/event_sampling to read
the instructions executed counter. It ...
0
votes
2answers
28 views
How do I capture console output from a remote NSight session?
I have a set of CUDA apps that both write to the console via cout. I have a host machine with VS and NSight plug-in and a target machine with NSight service. However, when I execute the console app, ...
0
votes
1answer
46 views
Switch host functions depending on CUDA compute capability at runtime
I currently have a host function which includes a loop and a variety of CUBLAS calls. Now having access to CC 3.5 devices, I can write a single much more efficient kernel using dynamic parallelism. ...
0
votes
1answer
47 views
GPU coalesced global memory access vs using shared memory
If a thread is accessing global memory, why does it access a large chunk? Where is this large chunk stored?
If your reading from global memory in a coalesced manner, would it be beneficial to copy a ...
0
votes
0answers
21 views
CUDA 2D layered Texture from 3D array (float vs int)
I got the following program which is pretty much the SDK Sample "Simple Layered Texture".
// includes, system
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include ...
0
votes
1answer
32 views
Numerical Integration; CUDA development
I need advice on how to proceed and utilize the compute power of CUDA device for numerical integration of a function. Some information about my device is below (irrelevant)
Hardware
Geforce GTX470; ...
0
votes
1answer
44 views
Cuda Project Not Compiling
I have compiled my cuda project using visual studio 2010. I have countered an error stated:
student_func.cu(65): error C2059: syntax error : '<'
The line where error occurs is when the kernel ...
1
vote
1answer
27 views
Creating mex files from CUDA code
I have Windows XP 64 bit, MATLAB R2012a( R2010a is also available here, but not installed), VS 2010 (VS 2008/VS 2012 is also available, but not installed) and CUDA 5.0 installed..
Is it possible to ...
-2
votes
0answers
28 views
CUDA: tridiagonalization algorithm giving wrong results after a few iterations; see anything wrong? [closed]
I am trying to parallelize the tridiagonalization of a matrix from Numerical Recipes in C and comparing the answers (and eventually the computation speed) of different matrix sizes. I have run into a ...
1
vote
1answer
25 views
how to use constant memory with Cublas?
When I use cublasIsamax with regular memory allocator - it works fine.
int FindMaxIndex( const float* pVector, const size_t length )
{
int result = 0;
float* pDevVector = nullptr;
if( ...
1
vote
1answer
39 views
cuda: device function inlining and different .cu files
Two facts: CUDA 5.0 lets you compile CUDA code in different objects files for linking later on. CUDA architecture 2.x no longer inlines functions automatically.
As usual in C/C++, I've implemented ...
0
votes
1answer
60 views
cudaHostAlloc limitations
I have a system running Windows Server 2012. The system has 128 GB of memory and 6 Nvidia K10 GPUs with 8 GB of memory.
I use pinned host memory for all my devices (about 47 GB, 12 * 3.92 GB per ...
-1
votes
0answers
36 views
Cuda installation failure, missing libraries [closed]
I am trying to install Cuda on my 13.04 ubuntu
I downloaded the Cuda tool kit and when i run it it gives the following errors
Unsupported compiler: 4.7.3
Missing required library libglut.so
...
0
votes
0answers
40 views
CUDA “unknown error”. on many threads my code crashes
I wrote quite a long kernel in Cuda (about 700 lines of code).
My program has to use several billions of threads. Everything works fine if the kernel is launched on a restricted number of threads (10k ...
3
votes
0answers
56 views
CUDA memory for lookup tables
I'm designing a set of mathematical functions and implementing them in both CPU and GPU (with CUDA) versions.
Some of these functions are based upon lookup tables. Most of the tables take 4KB, some ...
2
votes
1answer
75 views
Confusion over grid and block dimensions
Im trying to solve the problem at the end of lesson 1 of the Udacity course but I'm not sure if ive just made a stupid typo or if the actual code is wrong.
void your_rgba_to_greyscale(const uchar4 * ...
0
votes
0answers
23 views
bivariate/trivariate cumulative normal density - GPU implementation
Is there any effective GPGPU (CUDA) implementation, commercial or otherwise, of bivariate and trivariate cumulative normal density?
I guess that it should not be something too complicated ...
0
votes
0answers
35 views
How does thrust decide kernel sizes? [duplicate]
When using thrust transformations to perform calculation on the device (saxpy example), how does thrust figure out the kernel's parameter like blockSize and gridSize?
1
vote
1answer
26 views
skipping incompatible libcudart.so when searching for -lcudart
When I compile .cu file with nvcc 5.0, the compiler gives me following information.
/usr/bin/ld: skipping incompatible /usr/local/cuda-5.0/lib/libcudart.so when searching for -lcudart
It seems ...
0
votes
1answer
35 views
Multi-GPU Memory Allocation behaves differently with different order of allocation
I have tested this on GTX 690 GPU with 4 GB RAM on Windows 7 x64, Visual C++ 10:
I want to allocate 1.2 GB RAM on each of the two devices. If I get the ram from the first device and then the second ...
0
votes
0answers
34 views
CUDA: sum-reduction — data lost in call to device function
I am writing a CUDA sum reduction code taking the sum of the absolute values of an array starting on element begin_index through end_index (I am using one block with a variable number of threads). ...
0
votes
1answer
30 views
Multi GPU performance degrade when allocated memory increases
I've tested the following on a GTX 690 GPU with 4GB RAM in Windows 7 x64, Visual C++ 10:
I've written a function that receives 2 vectors and adds into a 3rd vector. The task is broken over 2 GPU ...
0
votes
0answers
14 views
how to fix the prj0019 a tool returned an error code from compiling with cuda build rule
If compiled with the error to prj0019 a tool returned an error code from compiling with CUDA build rule...
Setting configuration
Windows8 k
Visual Studio 2005(C++)
Cuda SDK, Toolkit version : 4.1
...


