Tagged Questions
4
votes
2answers
254 views
Efficient Matrix decomposition into square submatrices in C++
I have implemented a Matrix datatype in C++ by using 1D datatype and wrapping it into rows and columns. Now, I want to have this possibility to create square/blocked sub-matrices from this time and I ...
4
votes
4answers
593 views
suggestions on a project in C++ / distributed systems / networks
I'd like to work on a 2-3 month long project (full time) that involves coding in C++ and is related to networks (protocol stacks). I was considering writing my own network stack but that doesn't seem ...
3
votes
4answers
582 views
c++ opengl: can i calculate normals in gpu? If so, how?
I have an opengl application that loads a dxf and draws it on the screen,
each time i need to calculate normals. is there a way to calculate normals in GPU instead of CPU ? if so how ?
2
votes
1answer
197 views
CUDA: please help me to find error in my code
There's code, that uses GPU:
__global__ void gpu_process(float* input, float* weights, float* output, int psize, int size)
{
int i = blockIdx.x*blockDim.x + threadIdx.x;
int j = ...
1
vote
2answers
39 views
Using C++ Amp Library
I"m trying to start playing around with the amp.h library. But when I type #include amp.h I get an error saying cannot open source file amp.h . Is there something special i need to do to make this ...
1
vote
1answer
178 views
CUDA Convex Hull program crashes on large input
I am trying to implement quickHull algorithm (for convex hull) parallely in CUDA. It works correctly for input_size <= 1 million. When I try 10 million points, the program crashes. My graphic card ...
1
vote
3answers
913 views
OpenCL doesn't find ATI card
I have a notebook with ATI Mobility Radeon HD 5650, and want to use the card for computing =) After installing AMD APP SDK v.2 (installation was OK) I tried to run code samples, provided with AMD. But ...
1
vote
1answer
265 views
Selecting a device for CUDA debugging
I've got a couple of Parallel Nsight compatible CUDA GPU's. The second (lower) one is connected to my monitor, and the first (upper) one is is set up as a PhysX accelerator. You can clearly see my ...
1
vote
2answers
1k views
Why do I get a CL_MEM_OBJECT_ALLOCATION_FAILURE?
I'm allocating a cl_mem buffer on a GPU and work on it, which works fine until a certain size is exceeded. In that case the allocation itself succeeds, but execution or copying does not. I do want to ...
0
votes
1answer
55 views
Controlling the index variables in C++ AMP
I have just started trying C++ AMP and I decided to give it a shot with the current project I am working on. At some point, I have to build a distance matrix for the vectors I have and I have written ...
0
votes
3answers
241 views
Is there any online compiler with executer that would compile apps that use GPU speciffic C/C++ code?
Generally I need some online compiler that can compile and execute provided program and output execution speed and other statistics. All program can be in one C file and it would use any GPU C/C++ ...