Ben Tordoff
MathWorks
Followers: 0 Following: 0
Statistiques
RANG
766
of 295 448
RÉPUTATION
98
CONTRIBUTIONS
0 Questions
23 Réponses
ACCEPTATION DE VOS RÉPONSES
0.00%
VOTES REÇUS
21
RANG
115 of 20 227
RÉPUTATION
9 861
CLASSEMENT MOYEN
4.80
CONTRIBUTIONS
11 Fichiers
TÉLÉCHARGEMENTS
82
ALL TIME TÉLÉCHARGEMENTS
84606
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
A soumis
CPUInfo
MATLAB utility for returning information about your processor and memory.
environ un an il y a | 13 téléchargements |
A résolu
Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...
plus de 3 ans il y a
A soumis
GPU Fractal Explorer
View and investigate various fractals using MATLAB and an NVIDIA GPU
plus de 3 ans il y a | 4 téléchargements |
A soumis
GPU Julia Set Explorer
Explore the Julia Set of the Mandelbrot Set using MATLAB and a capable GPU.
plus de 3 ans il y a | 7 téléchargements |
A soumis
A GPU Mandelbrot Set
Explore the Mandelbrot Set using MATLAB and a GPU.
presque 4 ans il y a | 10 téléchargements |
A soumis
multiWaitbar
A new "shiny" progress-bar with multiple bars in a single window, time-estimates and more.
plus de 4 ans il y a | 9 téléchargements |
A soumis
SplashScreen
Show a splash-screen during MATLAB application start-up.
environ 8 ans il y a | 5 téléchargements |
A soumis
rotateXLabels( ax, angle, varargin )
Rotate x-tick labels to any angle, preserving font settings and coping with resize, zoom, pan etc
environ 8 ans il y a | 6 téléchargements |
A soumis
3D Pie Charts With a Touch of Style
3D pie charts with smooth surfaces, lighting and shadows for a more visually appealing appearance.
environ 8 ans il y a | 6 téléchargements |
A soumis
GUI Layout Toolbox
Layout management objects for MATLAB GUIs
environ 8 ans il y a | 17 téléchargements |
A soumis
taskMap: show your distributed computing tasks
charts completed and running tasks for a distributed computing job for each worker
environ 8 ans il y a | 2 téléchargements |
A soumis
Carving a Dinosaur
This is a demo of reconstructing a 3D shape from multiple images using space-carving.
environ 8 ans il y a | 3 téléchargements |
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...
plus de 8 ans il y a | 2
| A accepté
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_...
presque 11 ans il y a | 0
| A accepté
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...
presque 11 ans il y a | 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...
environ 11 ans il y a | 1
| A accepté
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...
environ 11 ans il y a | 1
| A accepté
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...
plus de 11 ans il y a | 1
| A accepté
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...
plus de 11 ans il y a | 0
| A accepté
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. ...
plus de 11 ans il y a | 0
| A accepté
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> ...
plus de 11 ans il y a | 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!...
plus de 11 ans il y a | 0
| A accepté
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...
plus de 11 ans il y a | 2
| A accepté
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.*...
plus de 11 ans il y a | 0
| A accepté
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...
plus de 11 ans il y a | 0
A résolu
Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...
environ 12 ans il y a
A résolu
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
environ 12 ans il y a
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...
environ 12 ans il y a | 3
| A accepté
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 "...
plus de 12 ans il y a | 2
| A accepté