Forum Discussion
Hi,
Any further update or concern? Do you need further help on this thread?
Thanks,
Best Regards,
Sheng
p/s: If any answer from the community or Intel Support are helpful, please feel free to give best answer or rate 4/5 survey.
I was just trying to follow how Quartus would synthesize the following code in a function:
FUNCTION whatever (mystuff : IN float64) RETURN myvalue IS
VARIABLE val1, val2, val3 : float64;
BEGIN
val1 := mystuff + 1;
val2 := mystuff * 2
val3 := sqrt(mystuff) ;
return val1;
--return val2;
--return val3;
END whatever;
is my understanding correct that the above function won't be synthesized (as all operators +, * and sqrt require an IP) but just possibly run on the simulator? If I wanted to synthesize I would have to instantiate an IP component and use signals, is that the only way?