Forum Discussion
NoahHuguenin
Occasional Contributor
8 months agoHello @Jessica_Intel @BoonBengT_Altera ,
Thank you for your answers!
Excuse me for not clarifying, cfixed_t is defined in my .h file as:
typedef struct complex_fixed {
fixed16 real;
fixed16 imag;
} cfixed_t;
And fixed16 is defined as
typedef ac_fixed<16, 3, true,AC_RND, AC_WRAP> fixed16;
The only C++ non-HLS libraries I use are stdio.h and ctime.h, but I have used them in other projects with no problems. That is why I suspected the mm_host as the cause of the error, since I had not used this type in previous tests.
In any case, here is a somewhat simplified version of the test, with which you should be able to replicate this error. The build command is included in a .txt file within the project folder.
Regards,
Noah