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 was archived by the owner on Jan 12, 2024. It is now read-only.
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
namespaceNameSpace{openMicrosoft.Quantum.Arrays;@EntryPoint()operationmain(): Unit {mutableNISLParameter0=0;mutableNISLParameter1=[1,2,3];mutableresult=Chunks(NISLParameter0,NISLParameter1);}}