This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Description
Description
When running the following Q# program,a timeout behavior occurred,and the execution time is over 2 minutes.I guess the special value(0) of the first parameter in Chunks results in it.Is my guess right?Looking forward to your reply. Thank you!
Testcase
namespace NameSpace {
open Microsoft.Quantum.Arrays;
@EntryPoint()
operation main() : Unit {
mutable NISLParameter0 = 0;
mutable NISLParameter1 = [1,2,3];
mutable result = Chunks(NISLParameter0,NISLParameter1);
}
}
Behavior
Timeout (runs for more than 2 minutes)
Environment
operating system:Windows 10
dotnet version:5.0.301
QDK:v0.23.195983