GRT target code runs slower than Rapid Accelerator mode
이전 댓글 표시
Hello,
I have a large Simulink model that is modeling multiple dynamic systems. In rapid accelerator mode, the model runs at about 1.5x real time. I have used the Real-Time Workshop to generate C code of the model and have built an executable using the grt_main.c wrapper function. The executable runs at about 6x real time. Is this typical? If not, does anyone know why this might be?
I have enabled most of the optimization options and parameter inlining. My model does not need to run in real-time, it just concerns me that it takes 4x longer to run the generated code than it dos to run in rapid accelerator mode.
At first glance the generated code appears to produce the same results as rapid acclerator mode, but I am in the process of formally verifying that.
Also, I have several enabled subsystems that run in multiple sample times. I haven't had a chance to correct these yet, so i disabled the error. I dont know if this is related to my speed issue, but you never know.
Thanks for any info,
Matt
댓글 수: 6
Guy Rouleau
2011년 2월 3일
This is surprising. This can be influenced by many things in your model. For example do you have many custom s-functions? Do you load data using Form or From Workspace blocks?
One thing I would like to compare is the speed of the EXE generated using the Rapid Simulation (RSim) target, both with the RTW fixed-step solvers and the Simulink solver module (selected in model configuration).
If your license is under maintenance, this is the sort of thing technical support can help diagnosing.
Matthew
2011년 2월 4일
Mark
2011년 2월 4일
It is worth noting that Rapid Accelerator/RSIM are somewhat "high overhead" simulations, that is, although individual simulations run faster, you need extra time to set up Rapid Accelerator/RSIM in the first place.
I would be interested to see if this difference in duration exists only for the first run of the simulation or across multiple runs.
There may also be differences in the amount of work being done by the solvers as well. The GRT code must be fixed-step, whereas Rapid Accelerator may be using a variable-step solver.
Matthew
2011년 2월 7일
Guy Rouleau
2011년 2월 7일
This is very surprising. I can't guess anything else. I recommend contacting technical support because this is definitely unexpected. To investigate deeper, what I would do is to cut the model in pieces, trying to isolate the piece causing problems.
Matthew
2011년 2월 8일
답변 (3개)
Seth Popinchalk
2011년 2월 17일
0 개 추천
It is likely that some of the hooks to connect the Rapid Accelerator mode simulation with Simulink may add a measurable overhead to the simulation. The GRT Wrapper generated executable would not include those hooks, so it could conceivable be faster. (You might be able to verify this by building GRT with external mode support to see if it slows down the GRT based executable.)
Seth Popinchalk
2011년 2월 17일
0 개 추천
The memory layout for a GRT executable and a Rapid Accelerator executable could be quite different. Depending on cache effects, and algorithm access patterns, the time to access global memory may have a significant impact on run time. The so-called pathological cache effects ( cache misses ) can result in significant run-time changes.
Brad Carman
2018년 6월 4일
0 개 추천
Was there ever an answer to this question? I'm currently experiencing the same exact problem.
카테고리
도움말 센터 및 File Exchange에서 Accelerated Simulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!