GPGPU is an acronym for the field of computer science known as "General Purpose computing on the Graphics Processing Unit (GPU)"

learn more… | top users | synonyms

0
votes
0answers
12 views

OpenCL pixel check

I have a opencl kernel that does some warping on an images. This is a forward mapping and each kernel instance handles the mapping/warpping of one pixel in the source image. This means that some ...
0
votes
1answer
27 views

platforms in OpenCL

I have Nvidia Graphics card(GeForce GT 640) ON MY MOTHERBOARD. I have installed OpenCL on my box. When I query about platform using "clGetPlatformInfo(parameters)", I see the following output:- ...
1
vote
0answers
49 views

CudaMalloc not working

I'm writing a code to transfer a 3D array from Host to device, edit the array in device and transfer all of the memory back. I've cut it down to the core code shown below, but still cannot get this to ...
1
vote
2answers
37 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 ...
1
vote
1answer
45 views

Can I link numpy with AMD's gpu accelerated blas library

I reconized numpy can link with blas, and I thought of why not using gpu accelerated blas library. Did anyone use to do so?
0
votes
1answer
30 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
0answers
37 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
35 views

Portable gpgpu tools between desktop and mobile

At first, I study opencl because many people say opencl is portable between different vendors, devices, could write intuitive algorithms when compare to opengl. The problem is, for now, most of the ...
2
votes
1answer
55 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 ...
0
votes
1answer
35 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 ...
1
vote
0answers
47 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
1answer
29 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 ...
4
votes
0answers
109 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
69 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
61 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
40 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 ...
0
votes
0answers
46 views

Is there a CUDA smart pointer?

If not, what is the standard way to free up cudaMalloced memory when an exception is thrown? (Note that I am unable to use Thrust.)
2
votes
1answer
42 views

Can I cudaMemcpy from device straight into host STL vector?

Pretty much as the title says - I plan to .reserve() some memory on the host via an STL vector, and then cudaMemcpy an array from device to host (i.e. into that reserved host memory). Will the STL ...
1
vote
1answer
41 views

How to write code which performs calculations using the GPU?

We hear a lot about how certain types of calculation can be completed much more quickly by a GPU than by a CPU, but as a programmer I would have no idea how to force a calculation to be run in this ...
0
votes
1answer
76 views

How to split class definition between multiple .cpp and .cu files?

I've got a class with nested classes mixing both C++, CUDA and Thrust. I want to split member definitions across a number of files. // In cls.h: #include <thrust/device_vector.h> class cls { ...
0
votes
1answer
40 views

Calling inline function in .cu file from C++ class

I'm trying to call a kernel wrapper foo from a C++ class. I've tried to do as suggested here below: // In CPP.h: class cls { extern "C" inline void foo(); } // In Kernels.cu: #include "CPP.h" ...
0
votes
2answers
67 views

Most efficient number of blocks to launch in CUDA?

I have a very large array with N0 elements. Each thread will loop over and operate on m elements. I have fixed TBP threads per block. CUDA constrains blocks per grid BPG < 65535 =: BPG_max Now, ...
1
vote
2answers
72 views

CUDA compute capability 1.0 faster than 3.5

I have a cuda program that I am running on a 680gtx, while testing different compiler options I noticed that: compiling my code for compute capability 1.0 and sm 1.0 gives a runtime of 47ms ...
0
votes
0answers
22 views

gpu programming on lenovo W520 running ubuntu 12.04

Goal: push camera images at max frame rate to gpu, process images always using many algorithms, choose algorithm views to pull image from gpu and display in separate windows. Approach: * Discover ...
0
votes
1answer
64 views

Will performance be hit if a kernel is too short?

If I'm doing an element-by-element operation on a matrix M, say M[i, j] *= (1 - M[i, j]), is it fine to launch a thread for each element (i, j)? I'm just concerned at what point the overhead of ...
0
votes
1answer
71 views

Calling cudaDeviceSynchronize() only for a particular kernel

I call kernels KerA and KerB asynchronously. Kernel KerC is dependent on KerB finishing but independent of KerA. So how to call cudaDeviceSynchronize() in such a way that means KerC waits for KerB to ...
0
votes
0answers
46 views

Cuda function pointer consistency

I recently tried to use function pointer to dynamically define several processing stage in my application, running on a sm_30. It would be difficult to post the code here, as there are many ...
1
vote
2answers
57 views

Is it faster to sum the rows or columns of a matrix with CUDA?

I want to compute a row-sum of an m x n matrix A, or equivalently the column-sum of its transpose A' (I have both in memory so A' costs me nothing extra in computation). I plan to launch m threads ...
6
votes
1answer
78 views

How to avoid default construction of elements in thrust::device_vector?

It seems when creating a new Thrust vector all elements are 0 by default - I just want to confirm that this will always be the case. If so, is there also a way to bypass the constructor responsible ...
1
vote
1answer
77 views

How to easily switch between single and double precision in CUDA?

When debugging developing and debugging, I would like to run my code with double precision. However, once I know it's working, I'd like the option to run my code using single precision (i.e. floats) ...
1
vote
1answer
59 views

CUDA pow function with integer arguments

I'm new in CUDA, and cannot understand what I'm doing wrong. I'm trying to calculate the distance of object it has id in array, axis x in array and axis y in array to find neighbors for each object ...
2
votes
1answer
67 views

How to store the vector.begin() iterator of template type in thrust?

When I attempt to assign a variable to that iterator, i get the error: expected a ";", where vec is a thrust::device_vector<my_type>, j is some int, and my_type is a template type: for ...
3
votes
1answer
46 views

Template function to print a Thrust vector

I'm writing a matrix template class that prints to both file and std::cout, i.e.: matrix<float> myMat; ... myMat.cout(...) // print to std::cout myMat.write("out.txt") // print to file ...
1
vote
1answer
26 views

Clarification of the leading dimension in CUBLAS when transposing

For a matrix A, the documentation only states that the corresponding leading dimension parameter lda refers to the: leading dimension of two-dimensional array used to store the matrix A Thus I ...
0
votes
2answers
57 views

Why does CUBLAS use const pointers for parameters?

e.g., cublasStatus_t cublasSgemm(cublasHandle_t handle, cublasOperation_t transa, cublasOperation_t transb, int m, int n, int k, ...
0
votes
0answers
23 views

Include map and reduce in written in C/OpenCL in hadoop

I have written my own codes of map and reduce function in OpenCL kernel. General scenario of MapReduce which is basically incorporated in Hadoop itself is written in java. How can I use my own ...
0
votes
1answer
45 views

Can input matrices also be used to store the output matrix with CUBLAS?

For instance, cublas<t>geam() will do: But what if I want to store the result in A anyway? Can I call it with pointers *C = *A so that: without fear that I may be writing output to a ...
0
votes
0answers
56 views

accessing memory allocated with cudaMallocPitch

I'm trying to create a 2d array in cuda and initializing it but failing miserably. Here's my initialization kernel: __global__ void initMap(float* map, size_t pitch, int w, int h, int numX, int ...
-3
votes
1answer
113 views

GTX Titan Win7 x64 works at x8 instead of x16 :( [closed]

I'm testing a GTX Titan under Win7 x64 and it seems it doesn't run at PCIe 3.0 speed. I run it on a PCI-E 3.0 interface and my PB supports it (gigabyte Z77x UD5H), GPU-z tells me its PCI-E 3.0x16@x8 ...
-4
votes
1answer
56 views

How large is my Matrix? [closed]

I am working on a code which has Matrix Multiplication along with other complex mathematical functions like fft,lu,ifft,fftshift etc. What I want to know is when I change my input parameters how ...
3
votes
2answers
107 views

Open Source Library for complex mathematical problems like Matrix Mul, LU, FFT etc in OpenCL

The use of GPU in General Purpose is common now. And the very basic thing, the Matrix Multiplication is the first in the OpenCL tutorials. Instead of writing codes and kernel codes for specific gpu. ...
1
vote
1answer
60 views

Clear pixels with overlapping content

I'm rendering a quad-mesh to an off-screen framebuffer in OpenGL with possibly overlapping quads (more fragments into a single framebuffer pixel). All quads lie in the plane y=0. I would like to know ...
0
votes
1answer
91 views

NSight skipping breakpoints while debugging

I have a cuda application which I am trying to debug using parallel Nsight debugger. I have a breakpoint in my kernel function. But when I am trying to debug the code the debugger is not stopping at ...
-2
votes
1answer
67 views

The best heterogenous programming language

I am a beginner in heterogenous computing and I would say this is my first project in this field. I have written code in C++ to read multiple .dat files into the main memory by the CPU. However, I'm ...
2
votes
1answer
169 views

Improving asynchronous execution in CUDA

I am currently writing a programme that performs large simulations on the GPU using the CUDA API. In order to accelerate the performance, I tried to run my kernels simultaneously and then ...
0
votes
1answer
67 views

how to assign a “const void*” to a “const uint64_t*” in cuda c?

I want to assign "const void*" to a "const uint64_t*" in cuda c. I have done like this, void func(const void *buffer) { const uint64_t *words = buffer; } but i'm getting an error like this, ...
0
votes
1answer
40 views

C++-amp libraries and software requirements

My Visual Studio version does not have GPU debugger option. is it because of the version itself or should I download some updates? The version is "Microsoft Visual Studio Express 2012 for Windows ...
0
votes
0answers
75 views

How to get the precise division computation up to mantissa 10 in CUDA

I am facing floating-point computation issue on CUDA. The value of one of the intermediate results is rounded-off on the 6th or 7th digit after decimal, but this does not happen with CPU computation ...
1
vote
0answers
30 views

Streaming global memory: Performance loss when accessing in reversed order?

When processing elements of a global array (writing or reading), one entry in one work item, it's known to be more efficient if I access adjacent memory addresses for adjacent work items. This is ...
0
votes
1answer
27 views

Timing data transfer and execution in JOCL

I am using the JOCL library (by JOGAMP) and I was wondering if it was possible to measure the time it took to transfer data from host to device, the time the kernel took and the time it took to get ...

1 2 3 4 5 16