How to speed up the code using CODER (mex file generation) in numerical analysis simulation ?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Gaurav Garg
2020-8-11
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.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Ordinary Differential Equations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!