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
Internal Error at /home/xuanda/dev/Serializer/Halide-clean/src/Simplify_Let.cpp:68 triggered by user code at : Condition failed: !var_info.contains(op->name): Simplify only works on code where every name is unique. Repeated name: input.s0.y.v3.base
[1] 387235 abort (core dumped)
The text was updated successfully, but these errors were encountered:
In the following code:
let a = b in
X
let a = c in
Y
If Stmt X successfully had stores interleaved, it was re-nesting it like
so:
let a = b in
X
let a = c in
Y
This introduces a shadowed variable 'a', which is illegal at this stage
of lowering.
Fixes#7906
Also some drive-by fixes to earlier tests that had debugging code left
in.
In the following code:
let a = b in
X
let a = c in
Y
If Stmt X successfully had stores interleaved, it was re-nesting it like
so:
let a = b in
X
let a = c in
Y
This introduces a shadowed variable 'a', which is illegal at this stage
of lowering.
Fixes#7906
Also some drive-by fixes to earlier tests that had debugging code left
in.
ardier
pushed a commit
to ardier/Halide-mutation
that referenced
this issue
Mar 3, 2024
In the following code:
let a = b in
X
let a = c in
Y
If Stmt X successfully had stores interleaved, it was re-nesting it like
so:
let a = b in
X
let a = c in
Y
This introduces a shadowed variable 'a', which is illegal at this stage
of lowering.
Fixeshalide#7906
Also some drive-by fixes to earlier tests that had debugging code left
in.
A repro that fails on current main:
error:
The text was updated successfully, but these errors were encountered: