Unnecessary copying in Matlab Coder generated C code

Hi! I generated C code with Matlab Coder can I realize that there are a lot of such unnecessary copying. What can I do to avoid that?
for (i0 = 0; i0 < 153; i0++) {
dv42[i0] = dv74[i0];
dv43[i0] = dv75[i0];
}
...
for (i0 = 0; i0 < 153; i0++) {
dv74[i0] = dv42[i0];
dv75[i0] = dv43[i0];
}
...
for (i0 = 0; i0 < 153; i0++) {
dv42[i0] = dv74[i0];
dv43[i0] = dv75[i0];
}

1 Kommentar

Ryan Livingston
Ryan Livingston am 1 Aug. 2013
Bearbeitet: Ryan Livingston am 1 Aug. 2013
If you post a small example of MATLAB code which produces this, we may be able to give some suggestions.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Jane Jean
Jane Jean am 1 Aug. 2013
I have a structure in Matlab similar to what is below and right before the subfunction is called, the generated C code is doing the unnecessary copying instead of taking 'a' directly as an input of the subfunction.
function output = main_function(a)
...
a = [1;2;3];
...
output_sub = subfunction(a)

2 Kommentare

The copying would be appropriate if the subfunction modifies its input, which we cannot determine from what you show.
Why are you passing "a" into main_function and also assigning a value to it?
'a' is first used somewhere before it is reassigned with another value. But right before it is fed into 'subfunction', 'a' is copied to another temporary variable, e.g. 'dv74' then the latter is copied to 'dv42' and 'dv42' is copied back to 'dv74' and 'dv74' is again copied to 'dv42' and finally subfunction takes 'dv42' as input. What can I do to avoid this unnecessary copying?

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB Coder finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 1 Aug. 2013

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by