[HDL Coder] Bug: Fixed point converter does not descend into System Objects
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Can I somehow tell the fixed point converter to explicitly convert a certain function? This would temporarily fix the following bug.
The Bug I found can be reproduced with these files:
dut_tb.m
a = dut(1);
dut.m
function out = dut(in)
persistent system;
if isempty(system)
system = dutSystem(1.1);
end
out = system.step(in);
end
dutSystem.m
classdef dutSystem < matlab.System
properties (Nontunable)
number
end
methods (Access = public)
function obj = dutSystem(number)
obj.number = number;
end
end
methods (Access = protected)
function out = stepImpl(obj,in)
out = buggy_function(in,obj.number);
end
end
end
buggy_function.m
function out = buggy_function(in1, in2)
out = round(in1 + in2);
end
convert.m
function [] = convert()
exArgs = {1};
fc = coder.config('fixpt');
fc.TestBenchName = 'dut_tb';
hc = coder.config('hdl');
codegen -float2fixed fc -args exArgs -config hc dut
end
Execute convert. The HDL coder will stop, because round is supposedly not supported by the HDL coder. But it is supported. The fixed-point converter just did not convert buggy_function.m
0 comentarios
Respuestas (1)
Kiran Kintali
el 20 de Abr. de 2020
Unfortunately the development team cannot reproduce the issue. Is it possible the attached reproduction steps are not sufficient? Can you share a zip file with the code and a snapshot of the error message when running the convert() function? Thanks
1 comentario
Jan Siegmund
el 22 de Abr. de 2020
Editada: Jan Siegmund
el 22 de Abr. de 2020
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!