[Coder] Which types are supported for constant folding?

1 回表示 (過去 30 日間)
Jan Siegmund
Jan Siegmund 2020 年 3 月 18 日
回答済み: Jan Siegmund 2020 年 4 月 2 日
In MATLAB HDL coder I try to do constant folding on the output of a function.
The output type is a 1x262144 uint16.
The coder complains with:
The input to coder.const cannot be reduced to a constant: Unsupported type.
Which types are supported?
  3 件のコメント
Jan Siegmund
Jan Siegmund 2020 年 3 月 18 日
Thanks, I'll have a look.
Jan Siegmund
Jan Siegmund 2020 年 3 月 18 日
I found the matrix being responsible for the issue. It is created from a concatenation in a for loop.
However the size can be determined at compile time wihtout doubt.
I tried to help the coder with
coder.varsize('a', [1 2^b], [0 0])
where b is compile time constant, but it still complains, that it cannot create the vector from concatenation
if the size is locked. Is there any other way?

サインインしてコメントする。

採用された回答

Jan Siegmund
Jan Siegmund 2020 年 4 月 2 日
I did understand constant folding wrong:
I thought one must help the coder as follows:
a = coder.const(my_prod(3,2));
, because the gui of the fixed point converter was still complaining about a unsupported function in
my_prod
But the statement is already recognized as constant.
coder.const
just needs to be used, if you call a function multiple times with different input parameters
and you want the coder to create the function multiple times, each time with all of the parameters constant.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB Coder についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by