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
{{ message }}
This repository has been archived by the owner on Mar 27, 2022. It is now read-only.
There is a problem when llvm IR generate an unnamed temporary value inside another llvm IR instruction
es:
result: %tmp2.flt = load double, double* getelementptr inbounds ([100000 x double], [100000 x double]* @array, i64 0, i64 0), align 16, !taffo.initweight !14, !taffo.info !1
expected: %tmp2.flt = load double, double* getelementptr inbounds ([100000 x double], [100000 x double]* @array.fixp, i64 0, i64 0), align 16, !taffo.initweight !14, !taffo.info !1
So when the instruction is converted FloatToFixed::fallback(here) is called
then a call to fallbackMatchValue(here) is performed which dosen't change the operand because TypeConversion is not set for the GEP array.zip
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
There is a problem when llvm IR generate an unnamed temporary value inside another llvm IR instruction
es:
result:
%tmp2.flt = load double, double* getelementptr inbounds ([100000 x double], [100000 x double]* @array, i64 0, i64 0), align 16, !taffo.initweight !14, !taffo.info !1
expected:
%tmp2.flt = load double, double* getelementptr inbounds ([100000 x double], [100000 x double]* @array.fixp, i64 0, i64 0), align 16, !taffo.initweight !14, !taffo.info !1
So when the instruction is converted FloatToFixed::fallback (here) is called
then a call to fallbackMatchValue (here) is performed which dosen't change the operand because TypeConversion is not set for the GEP
array.zip
The text was updated successfully, but these errors were encountered: