1,420 reputation
521
bio website cudaspace.wordpress.com
location Santiago de Compostela
age 36
visits member for 2 years, 1 month
seen 3 hours ago
stats profile views 171

Developer, particularly interested in Computer Graphics. Always interested in new technologies.


9h
comment Convenience of 2D CUDA texture memory against global memory
@BenC Good feedback. I didn't know it but in Kepler (CC 3.0) the texture throughput is increased (up to 4x) compared to Fermi. My answer is based on my own experiment. Keeping track of the NVIDIA whitepaper would be a better idea
May
15
awarded  Popular Question
Apr
29
comment Qt Creator 32 bit with CUDA V5
I guess that the extern"C" linkage-specification is misplaced. It should be placed before the void vectorAddition( ... ) function not before the __global__ void vectorAdditionCUDA(...) function.
Apr
27
comment NSight skipping breakpoints while debugging
Just wondering where did you set the brsakpount? Is that instruction executed by a thread?
Apr
19
awarded  Yearling
Apr
17
comment CUDA with Qt in Qt Creator on Ubuntu 12.04
-L/usr/local/cuda-5.0//lib/ has two slashes before lib/. Is that a typo ?
Apr
12
comment Cuda program crashes when using an if-conditional
Where and how are color and result defined ?
Apr
12
revised Speed up calculation
Fixed grammar
Apr
12
answered Speed up calculation
Apr
2
comment How can i specify range of vector?
Although I have not worked with thrust, the documentation, which you should read, pointed me to the answer I posted. Your lack of effort may receive some downvotes. Anyway, I considered the question of interest for others
Apr
2
answered How can i specify range of vector?
Apr
2
comment How can i specify range of vector?
Do you mean generate the random numbers in the range [0, 100] ?
Apr
2
comment Difference between MPI timer and CUDA timer
In addition to @talonmies's comment, I guess you are also including the memory allocation within the MPI timing
Apr
1
comment Difference between MPI timer and CUDA timer
According to your example, you are timming a CUDA kernel call with CUDA events and a call to a function CUDA_func with MPI timers. The CUDA_func also has timing functions and may introduce an overhead. It seems you are not taking the same piece of code to compare the elapsed times.
Mar
22
comment CUDA shared object between threads
You should check for errors after each kernel call and not at the end. This also applies to any CUDA API call.
Mar
19
awarded  Popular Question
Mar
19
accepted How to run a MATLAB custom script with parameters in a workspace
Mar
19
asked How to run a MATLAB custom script with parameters in a workspace
Mar
5
awarded  Caucus
Feb
28
comment Precision in Sum reduction kernel with floats
@talonmies Should not be the same fro double precision? Or it depends on the GPU architecture?