Community Profile

photo

Ben Tordoff

MathWorks

Last seen: 29日 前 2011 年からアクティブ

Followers: 0   Following: 0

連絡

統計

All
  • Knowledgeable Level 3
  • GitHub Submissions Level 3
  • Personal Best Downloads Level 4
  • Editor's Pick
  • First Review
  • 5-Star Galaxy Level 5
  • First Submission
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

送信済み


CPUInfo
MATLAB utility for returning information about your processor and memory.

6ヶ月 前 | ダウンロード 16 件 |

Thumbnail

解決済み


Add two numbers
Given a and b, return the sum a+b in c.

3年弱 前

解決済み


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...

3年弱 前

送信済み


GPU Fractal Explorer
View and investigate various fractals using MATLAB and an NVIDIA GPU

約3年 前 | ダウンロード 3 件 |

Thumbnail

送信済み


GPU Julia Set Explorer
Explore the Julia Set of the Mandelbrot Set using MATLAB and a capable GPU.

約3年 前 | ダウンロード 2 件 |

Thumbnail

送信済み


A GPU Mandelbrot Set
Explore the Mandelbrot Set using MATLAB and a GPU.

3年以上 前 | ダウンロード 11 件 |

Thumbnail

送信済み


multiWaitbar
A new "shiny" progress-bar with multiple bars in a single window, time-estimates and more.

3年以上 前 | ダウンロード 10 件 |

Thumbnail

送信済み


SplashScreen
Show a splash-screen during MATLAB application start-up.

7年以上 前 | ダウンロード 9 件 |

Thumbnail

送信済み


rotateXLabels( ax, angle, varargin )
Rotate x-tick labels to any angle, preserving font settings and coping with resize, zoom, pan etc

7年以上 前 | ダウンロード 3 件 |

Thumbnail

送信済み


3D Pie Charts With a Touch of Style
3D pie charts with smooth surfaces, lighting and shadows for a more visually appealing appearance.

7年以上 前 | ダウンロード 5 件 |

Thumbnail

送信済み


GUI Layout Toolbox
Layout management objects for MATLAB GUIs

7年以上 前 | ダウンロード 26 件 |

Thumbnail

送信済み


taskMap: show your distributed computing tasks
charts completed and running tasks for a distributed computing job for each worker

7年以上 前 | ダウンロード 2 件 |

Thumbnail

送信済み


Carving a Dinosaur
This is a demo of reconstructing a 3D shape from multiple images using space-carving.

7年以上 前 | ダウンロード 40 件 |

Thumbnail

回答済み
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年弱 前 | 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_...

約10年 前 | 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...

約10年 前 | 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...

10年以上 前 | 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...

10年以上 前 | 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...

10年以上 前 | 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...

10年以上 前 | 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. ...

11年弱 前 | 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> ...

11年弱 前 | 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!...

11年弱 前 | 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...

約11年 前 | 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.*...

約11年 前 | 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...

約11年 前 | 0

解決済み


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...

11年以上 前

解決済み


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:...

11年以上 前

回答済み
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...

11年以上 前 | 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 "...

12年弱 前 | 2

| 採用済み

さらに読み込む