Tagged Questions
2
votes
1answer
104 views
CUDA: Unaligned Memory Access Not Supported: What am I missing?
There are a few questions similar to this but in this case, its a bit weird; NVCC 3.1 doesn't like this but 3.2 and 4.0RC do;
float xtmp[MAT1];
for (i=0; i<MAT1; i++){
xtmp[i]=x[p[i]]; ...
0
votes
3answers
659 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 seems to come and ...