Feeds
已回答
Could I use Convolutional Neural Network in Neural Network toolbox with GPU card of capabilty less than 3.0
Hi Serghei, I'm afraid the answer is no. Neural Network Toolbox uses NVIDIA's cuDNN library for running Convolutional Neural Net...
Could I use Convolutional Neural Network in Neural Network toolbox with GPU card of capabilty less than 3.0
Hi Serghei, I'm afraid the answer is no. Neural Network Toolbox uses NVIDIA's cuDNN library for running Convolutional Neural Net...
8 years 前 | 2
| 已接受
已回答
Why can't MATLAB parse function declarations in CUDA C files containing the "restrict" keyword?
Although __restrict is supported by Visual C++, the NVIDIA CUDA programming guide specifies the use of __restrict_...
Why can't MATLAB parse function declarations in CUDA C files containing the "restrict" keyword?
Although __restrict is supported by Visual C++, the NVIDIA CUDA programming guide specifies the use of __restrict_...
11 years 前 | 0
| 已接受
已回答
Matlab GPU processing: Nvidia Quadro vs Geforce
Hi Alex, I don't have access to either of these cards to test, but here's some information that might help you: * The "Com...
Matlab GPU processing: Nvidia Quadro vs Geforce
Hi Alex, I don't have access to either of these cards to test, but here's some information that might help you: * The "Com...
11 years 前 | 1
已回答
GPU FFT2 Discrepancies ( Different from CPU based FFT2 )
See the answer(s) to this question: <http://www.mathworks.com/matlabcentral/answers/1032-why-do-some-calculations-like-the-fft...
GPU FFT2 Discrepancies ( Different from CPU based FFT2 )
See the answer(s) to this question: <http://www.mathworks.com/matlabcentral/answers/1032-why-do-some-calculations-like-the-fft...
11 years 前 | 1
| 已接受
已回答
CUDA_ERROR_UNKNOWN when using floats instead of double precision
Thanks for sending the code. I’ve done some initial investigation and it looks like you have an illegal memory access somewhe...
CUDA_ERROR_UNKNOWN when using floats instead of double precision
Thanks for sending the code. I’ve done some initial investigation and it looks like you have an illegal memory access somewhe...
11 years 前 | 1
| 已接受
已回答
Getting NaN when evaluating PTX kernel file
First thing to do to track this down is to clearly specify your inputs and outputs. Inputs should be const. Based on your descri...
Getting NaN when evaluating PTX kernel file
First thing to do to track this down is to clearly specify your inputs and outputs. Inputs should be const. Based on your descri...
11 years 前 | 1
| 已接受
已回答
How to fix error : unrecognized token in Cuda code with nvcc compiler
There are two problems with what you have attempted, one just a typo and the solution to the other will depend on what you are t...
How to fix error : unrecognized token in Cuda code with nvcc compiler
There are two problems with what you have attempted, one just a typo and the solution to the other will depend on what you are t...
11 years 前 | 0
| 已接受
已回答
getframe issue in for-loop.
Hi Mike, you could try inserting a 'drawnow' just before the 'getframe'. This tells all MATLAB graphics and events to flush. ...
getframe issue in for-loop.
Hi Mike, you could try inserting a 'drawnow' just before the 'getframe'. This tells all MATLAB graphics and events to flush. ...
11 years 前 | 0
| 已接受
已回答
Memory leak while using gpuArray in parallel computing toolbox 2013a
Hi Laith, I believe this should be fixed by the following workaround: <http://www.mathworks.com/support/bugreports/954239> ...
Memory leak while using gpuArray in parallel computing toolbox 2013a
Hi Laith, I believe this should be fixed by the following workaround: <http://www.mathworks.com/support/bugreports/954239> ...
11 years 前 | 0
已回答
Matlab 2013a GPU memory leak
Hi Michael, could you read the following bug-report and try the workaround it contains (being careful about the backing-up step!...
Matlab 2013a GPU memory leak
Hi Michael, could you read the following bug-report and try the workaround it contains (being careful about the backing-up step!...
11 years 前 | 0
| 已接受
已回答
How to measure GPU memory bandwidth ?
Hi Anterrieu, you might like to have a look at the following article: <http://blogs.mathworks.com/loren/2012/12/14/measuri...
How to measure GPU memory bandwidth ?
Hi Anterrieu, you might like to have a look at the following article: <http://blogs.mathworks.com/loren/2012/12/14/measuri...
11 years 前 | 2
| 已接受
已回答
CUDA: faster indexing methods than logical for large arrays?
You can sometimes get a speed-up by replacing the logical indexing with some element-wise maths. For example: trian_x = M.*...
CUDA: faster indexing methods than logical for large arrays?
You can sometimes get a speed-up by replacing the logical indexing with some element-wise maths. For example: trian_x = M.*...
12 years 前 | 0
| 已接受
已回答
CUDA Kernels and long vectors
If you want to go down the "x" dimension first, you probably want int const globalBlockIdx = blockIdx.y * gridDim.x + block...
CUDA Kernels and long vectors
If you want to go down the "x" dimension first, you probably want int const globalBlockIdx = blockIdx.y * gridDim.x + block...
12 years 前 | 0
已回答
Cuda PTX kernel function boolean argument not supported?
Thanks for providing the compile line. It seems that recent versions of NVCC switch from mapping bools as "s8" to "u8" according...
Cuda PTX kernel function boolean argument not supported?
Thanks for providing the compile line. It seems that recent versions of NVCC switch from mapping bools as "s8" to "u8" according...
12 years 前 | 3
| 已接受
已回答
error when using gpu
Unfortunately, an expression like: gpuArray(1):gpuArray(10) won't work, and (as Walter says) it looks like one of your "...
error when using gpu
Unfortunately, an expression like: gpuArray(1):gpuArray(10) won't work, and (as Walter says) it looks like one of your "...
12 years 前 | 2
| 已接受
已回答
gpuArray and memory management
Hi Gunnar, this is more a work-around than an answer, but try inserting a "wait(gpu)" after freeing the memory. For example: ...
gpuArray and memory management
Hi Gunnar, this is more a work-around than an answer, but try inserting a "wait(gpu)" after freeing the memory. For example: ...
12 years 前 | 0
已回答
GPU implementation of Min function
All syntaxes for MIN and MAX are supported in Parallel Computing Toolbox starting in release R2011b.
GPU implementation of Min function
All syntaxes for MIN and MAX are supported in Parallel Computing Toolbox starting in release R2011b.
12 years 前 | 1
已回答
CUDA toolkit version | using constant memory
Hi, I will tackle the second question first as I am pretty certain of the problem. __constants__ must be defined at the global s...
CUDA toolkit version | using constant memory
Hi, I will tackle the second question first as I am pretty certain of the problem. __constants__ must be defined at the global s...
13 years 前 | 0
| 已接受
已回答
GPU time slower than CPU time, what went wrong with my GPU implementation?
Hi Ruby, I've just uploaded a benchmarking tool to the File Exchange which runs a whole load of these type of timings to put ...
GPU time slower than CPU time, what went wrong with my GPU implementation?
Hi Ruby, I've just uploaded a benchmarking tool to the File Exchange which runs a whole load of these type of timings to put ...
13 years 前 | 1
| 已接受
已回答
GPU and CPU computing results different
if you look at the magnitude of the difference compared to the magnitude of the values, it is pretty small: >> max(max(gathe...
GPU and CPU computing results different
if you look at the magnitude of the difference compared to the magnitude of the values, it is pretty small: >> max(max(gathe...
13 years 前 | 4
已回答
GPU implementation of Min function
Hi Sarah, if your MATLAB license is up to date you might like to have a look at the pre-release of R2011b which has just become ...
GPU implementation of Min function
Hi Sarah, if your MATLAB license is up to date you might like to have a look at the pre-release of R2011b which has just become ...
13 years 前 | 1
已回答
Indexing in GPUArrays
Hi Jesse, if your MATLAB license is up to date you might like to have a look at the pre-release of R2011a which is now available...
Indexing in GPUArrays
Hi Jesse, if your MATLAB license is up to date you might like to have a look at the pre-release of R2011a which is now available...
14 years 前 | 1
已回答
2D Graphs behind each other in 3D. Something like bar3
Hi Mirco, the way that PLOTYY works (and most of the other multi Y-axis MATLAB plots I've seen) is to have multiple axes obje...
2D Graphs behind each other in 3D. Something like bar3
Hi Mirco, the way that PLOTYY works (and most of the other multi Y-axis MATLAB plots I've seen) is to have multiple axes obje...
14 years 前 | 0