You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, to impose a fixed width of 48 to fixed-point types in `foo.dsp`, run `faust2comparator foo.dsp -fx-size 48`
however, this gives me build errors:
it cannot find float.cpp (which is generated in the cwd, so adding -I. to the compiler invocation fixes the problem)
however, float.cpp then goes on to include ap_fixed.h, which is supposed to live in /usr/local/include/ap_fixed/; at least if I read the compiler invocation correctly:
while packaging faust-2.74.6 for Debian, I tried to test the new
faust2comparator
withfaust2comparator foo.dsp -fx-size 48
as described infaust/architecture/comparator/README.md
Line 9 in b498ef5
however, this gives me build errors:
float.cpp
(which is generated in the cwd, so adding-I.
to the compiler invocation fixes the problem)float.cpp
then goes on to includeap_fixed.h
, which is supposed to live in/usr/local/include/ap_fixed/
; at least if I read the compiler invocation correctly:faust/tools/faust2appls/faust2comparator
Line 60 in b498ef5
now, I do not have a
/usr/local/include/ap_fixed/ap_fixed.h
file (nor the entire directory).where does it come from?
probably something like https://github.com/Xilinx/HLS_arbitrary_Precision_Types.git, but using the Xilinx headers gives me template-errors (unfortunately i didn't write them down before deleting the container).
It would be nice if there were some hints on how to use the fixed-point backends (e.g. what to install where)
The text was updated successfully, but these errors were encountered: