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
Description:
I've encountered a spurious runtime error but it only happens in a serial block.
Is this issue currently blocking your progress?
No
Steps to Reproduce
Source Code:
proc test() {
var A:[2..0]int;
forall (i, elt) inzip(A.domain, A) {
elt = i;
}
}
proc main() {
serial { test(); }
test(); // it works without the serial block
}
It compiles fine but I see this error at runtime
bb.chpl:3: error: halt reached - size mismatch in zippered iteration (dimension 0)
Associated Future Test(s):
TODO
Configuration Information
problem occurs in 2.2 and main as of Nov 5 2025, at least.
The text was updated successfully, but these errors were encountered:
Summary of Problem
Description:
I've encountered a spurious runtime error but it only happens in a
serial
block.Is this issue currently blocking your progress?
No
Steps to Reproduce
Source Code:
It compiles fine but I see this error at runtime
Associated Future Test(s):
TODO
Configuration Information
problem occurs in 2.2 and
main
as of Nov 5 2025, at least.The text was updated successfully, but these errors were encountered: