How to speed up the code using CODER (mex file generation) in numerical analysis simulation ?
1 view (last 30 days)
Show older comments
Hi all,
I'm solving PDE expressed by conservation equations (mass, heat, and momentum).
To solve the problem, firstly I discretized the space domain and newly formulated 2-D PDE into a 1-D ODE. The ode15s solver was introduced to reflect the system's stiffness.
The thing is that CODER does not help speed up..!
What I want is to use the CODER correctly to speed up the computation.
I'm wondering if using a function related on matrix generation (eyes, ones, diag) or ode15s adversely affects speed improvement. If so, is there any alternatives?
Thanks in advances :D
0 Comments
Accepted Answer
Gaurav Garg
on 11 Aug 2020
Hey Kim,
The speed-up factor would vary from application to application, and mainly because of the style of writing code.
I would suggest you to look at some techniques you can use to accelerate your MATLAB algorithm or application.
Overall, simply running an application using MATLAB Coder won't return you an optimized C/C++/MEX executable. For example, you may not see a good speedup when MATLAB code uses optimized libraries like BLAS. For more info, refer here. Moreover, refer to the MATLAB Coder documentation, and functions and objects that are supported for C/C++ code generation here.
More Answers (0)
See Also
Categories
Find more on Ordinary Differential Equations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!