Skip to content

Instantly share code, notes, and snippets.

@una-dinosauria
Created February 26, 2016 01:19
Show Gist options
  • Save una-dinosauria/ba89a2eda16263c21b88 to your computer and use it in GitHub Desktop.
Save una-dinosauria/ba89a2eda16263c21b88 to your computer and use it in GitHub Desktop.
find min in matlab
clear
tic;
matrix = rand( 256, 1e6, 'single' );
matrix_d = gpuArray( matrix );
toc
tic;
for i = 1:60
[~, b] = min( matrix, [], 1 );
end;
toc;
tic;
for i = 1:60
[~, b] = min( matrix_d, [], 1 );
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment