Why the same function is taking more time after MEX creation?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
JAI PRAKASH
le 27 Août 2018
Modifié(e) : Ryan Livingston
le 29 Août 2018
I want to create mex of 'sort()' funtion.
So I build below function
function idx = sort2(h) % h is 600x1280 'single' elements
[~,idx] = sort(h(:)); % because I just want indices only, I dont want the elements.
end
If I call above funtion:
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/194498/image.png)
Why the 'MEX' is taking more time??
0 commentaires
Réponse acceptée
Ryan Livingston
le 28 Août 2018
Modifié(e) : Ryan Livingston
le 29 Août 2018
The MATLAB Coder documentation has a section covering acclerating MATLAB code via MEX generation:
One page that's relevant to what you are seeing is:
It contains the statement:
Use MEX functions to accelerate MATLAB code only if user-generated code dominates the run time.
Avoid generating MEX functions if computationally intensive, built-in MATLAB functions dominate the run time. These functions are pre-compiled and optimized, so the MATLAB code is not accelerated significantly using a MEX function.
In MATLAB, sort is a built-in function that is hand-optimized and compiled. So the generated code likely won't be any faster and can be slower in some cases.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur MATLAB Compiler dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!