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
Hi,
Is Aladdin not supporting external library functions like <math.h>? I tried running exp, it can compile when I add the -lm flag to the makefile and creates a trace, so I saw this output "dynamic_trace.gz: Stopping logging at inst 443." but when I ran Aladdin, it doesn't show any computation/cycle count and reaches the end of the trace immediately. Do you have a suggestion to solve the issue? Thanks.
The text was updated successfully, but these errors were encountered:
LLVM-Tracer has a list of intrinsic math functions and other functions for which it will not trace, but instead will emit a special math opcode (code). It can't trace into them by definition since the tracer doesn't have access to the source code, so they get modeled specially as a black box operation instead. What math function were you using and having difficulty with?
Hi,
Is Aladdin not supporting external library functions like <math.h>? I tried running exp, it can compile when I add the -lm flag to the makefile and creates a trace, so I saw this output "dynamic_trace.gz: Stopping logging at inst 443." but when I ran Aladdin, it doesn't show any computation/cycle count and reaches the end of the trace immediately. Do you have a suggestion to solve the issue? Thanks.
The text was updated successfully, but these errors were encountered: