Coder: issue replacing variables with constant values
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am experiencing an issue with Coder. If I create a structure 'V' with a field 'A' and assign it a value of 3, and later call V.A in the m-code, the Coder output will not call v.a - it will replace it with "3". A basic example of the current code layout is below:
function [x]=helloworld(y)
persistent myconfig
if isempty(myconfig)
myconfig =loadmyconfig();
end
[x]=addnums(myconfig)
within loadmyconfig.m:
function [Data]= loadmyconfig ()
Data = struct(‘junk’,double(1),...
‘A’,1,...
‘B’,41)
within addnums.m:
function [y]= addnums (myconfig)
y = myconfig.A+ myconfig.B;
would become, when compiled as an executable: within addnums.c:
%function [y]= addnums (myconfig) y = 1+ 41;
I was unable to locate anything in the online help that addresses this issue. Does anyone have any suggestions?
0 comentarios
Respuestas (2)
Arnab De
el 26 de Abr. de 2013
Editada: Arnab De
el 26 de Abr. de 2013
If an expression (such as myconfig.A) has a constant value in all executions of the program, MATLAB Coder tries to use that constant value in place of the expression. This optimization makes the generated code efficient. Why do you consider this to be a problem?
4 comentarios
A.H.T.Eranga De Silva
el 12 de En. de 2021
Hi Arnab and Jared,
Could you please let me know the solution for this issue?
I also encountered with the same issue in MATLAB
Thank you...
Eranga
Adam Danz
el 14 de En. de 2021
@A.H.T.Eranga De Silva The order of the answers change according to votes and which answer is accepted. He's referencing the other answer on this page.
Arnab De
el 28 de Abr. de 2013
Editada: Arnab De
el 28 de Abr. de 2013
MATLAB Coder only respects the interface of the entry point function. Although you did not specify your codegen command, I guess it was something like
codegen helloworld -args {1} ...;
which specifies helloworld as the only entry point function. Therefore Coder optimized other functions thinking that they are not called from outside. If you want to call loadmyconfig and addnums from outside, you must specify them as entry point functions. Your codegen command should be
a = struct('junk', 1, 'A', 1, 'B', 1);
codegen loadmyconfig addnums -args {a} ...;
The GUI also lets you specify multiple entry points. You do not need to add helloworld unless you need it. Do not add functions that you are not going to call from outside as entry points, because you'll lose out on optimizations.
BTW, you mentioned that you compiled the MATLAB code to executable. However, it appears that for your purpose, it will be better to compile them to a static/dynamic library. Also, it is recommended that you first test your code by converting it to mex.
4 comentarios
Arnab De
el 30 de Abr. de 2013
As I said, Coder only respects the interface of the entry point functions. You specified helloworld and loadmyconfig as entry points and it did not change the signatures of those functions --- see helloworld.h/.c and loadmyconfig.h/.c. If you added addnums to your entry point list, it would have preserved the interface of addnums too (it would be in addnums.h/.c). Additionally, the structure would be declared in helloworld_types.h. However, the compiler is free to optimize the codes of these functions in any way it sees fit. In your case, you'll be calling the functions loadmyconfig and addnums from outside --- so as long as the interface of these functions are preserved, it should work for you. It does not matter if it has optimized calls to these functions in helloworld.c. Run the codegen command
a = struct('junk', 1, 'A', 1, 'B', 1);
codegen -config:lib helloworld -args {1} loadmyconfig addnums -args {a};
You should find the generated files in codegen/lib/helloworld/.
I also suggest that you go through the tutorials and documentation once. You can also contact MathWorks tech support.
Ver también
Categorías
Más información sobre MATLAB Coder en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!