Show HN: Optical Design and Simulation in Matlab
mathworks.com2 pointsby ashishuthama0 comments
0.0083
>> timeit(@()imresize(im,[320,200],'bilinear')) 0.0301
>> maxNumCompThreads(6); 0.0062
>> timeit(@()imresize(im,[320,200],'bilinear')) 0.0113
Oh, missed that lanczos2 part: 0.0146
>> maxNumCompThreads(6); 0.0049
Since MATLAB tries to do most of the computation in double precision, its harder to extract much from SIMD.