Louis Jenkins

Results 46 comments of Louis Jenkins

It seems that 1D array stuff is fine ```chpl use Time; iter domainQueryIteration(A : [?D] int) ref { for i in D do yield A[i]; } iter domainQuery(A, D) ref...

Would there be any issues with a runtime-assisted approached? That is, add some runtime checks to determine which path to take, either the old behavior of `zip` or iterating directly...

Cool! I'm glad you responded, I was just about to submit a PR to include this as a performance test (so that "sweeping things under the rug part" of you...

I didn't even know you could mark a comment as 'off-topic'

Definitely need to make `CHPL_GASNET_SEGMENT=fast` the default, its a night and day difference! NumLocales | SMP/UDP-Fast | UDP-Everything (Default) ----------------- | ------ | ----- 1 | 0.009726 | 009726 2...

Can you have overloads that accepts a scalar and one that accepts various non-scalars such as `args : []`, `args : range`, etc.?