1
vote
2answers
25 views
Switching threads for MFC application cleanup
I'm trying to clean up specific memory objects created by a specific thread (hence only accessible to that thread). The only way for me to achieve that is to switch to that particu …
0
votes
2answers
58 views
CUDA: What reasons could there be for nvcc taking several minutes to compile?
I have some CUDA code that nvcc (well, technically ptxas) likes to take upwards of 10 minutes to compile. While it isn't small, it certainly isn't huge. (~5000 lines).
The delay …
2
votes
4answers
748 views
Random Number Generator in CUDA
Hey people
I've struggled with this all day, I am trying to get a random number generator for threads in my CUDA code. I have looked through all forums and yes this topic comes u …
0
votes
3answers
41 views
CUDA Memory Allocation accessible for both host and device
I'm trying to figure out a way to allocate a block of memory that is accessible by both the host (CPU) and device (GPU). Other than using cudaHostAlloc() function to allocate page- …
1
vote
1answer
33 views
How to: Parallel Reduction of many unequally sized arrays in CUDA?
Hi there
I am wondering if anyone could suggest the best approach to computing the mean / standard deviation of a large number of relatively small but differently sized arrays in …
0
votes
2answers
80 views
CUDA driver installation on a laptop with nVidia NVS140M card
I'm trying to first figure out if my computer contain a CUDA-enabled card. It has an nVidia NVS 140M card, but I can't seem to figure out if it is the 128 MB version or 256 MB vers …
0
votes
1answer
18 views
convert u_int64_t to u_char on CUDA 2.3 nvopencc
CUDA 2.3 V0.2.1221 / 32bit linux
Hi, I have a problem with the following code:
__device__ void put_u64(void *vp, u_int64_t v) {
u_char *p = (u_char *) vp;
p[0] = (u_char) (v > …
6
votes
8answers
2k views
CUDA vs FPGA?
I am developing a product with heavy 3D graphics computations, to a large extent closest point and range searches. Some hardware optimization would be useful. While I know little a …
0
votes
1answer
47 views
CUDA vs. CuBlas memory management
I have noticed that I can use memory blocks for matrices either allocated using cudamalloc() or cublasalloc() function to call cublas functions. The matrix transfer rates and compu …
0
votes
2answers
50 views
CUDA on non-nVidia card hardware
My laptop doesn't have any nVidia graphic cards. I want to work on CUDA. The website says that CUDA can be worked in emulation mode on non-cuda hardware too. But when I tried insta …
0
votes
2answers
32 views
error in CUDA compilation
I'm getting this error while trying to run sample codes in CUDA SDK. I have CUDA 2.3 and Visual studio 2008
LINK : fatal error LNK1181: cannot open input file 'cutil32D.lib'
Any …
0
votes
1answer
98 views
CUDA host to device (or device to host) memcpy operations with application rendering graphics using OpenGL on the same graphics card
I have posted my problem in the CUDA forums, but not sure if it's appropriate to post a link here for more ideas in case there are significant number of different audiences between …
0
votes
2answers
30 views
CUDA, find out the number of registers in the kernel at runtime
hello
how can I find out the number of registers cuda kernel is using during run time?
I know how to find out information during the compilation, but I do not want to hardcode num …
0
votes
2answers
208 views
How should a very simple Makefile look like for Cuda compiling under linux
Hi,
I want to compile a very basic hello world level Cuda program under Linux. I have three files:
the kernel: helloWorld.cu
main method: helloWorld.cpp
common header: helloWo …
0
votes
1answer
52 views
CUDAPP 1.1 cudppSort configuration error (Invalid configuration argument).
I am trying to call cudppSort to sort a set of keys/values. I'm using the following code to set up the sort algorithm:
CUDPPConfiguration config;
config.op = CUDPP_ADD;
config.dat …
