-
Compiling the following:
```chpl
var r1,c1;
var r2,c2 : int;
for i in 0..10 {
(r1,c1) = (r2,c2);
r2 = i*2;
c2 = i*2;
}
```
Results in this error:
```
+ chpl foo.chpl -o foo
foo…
-
```
What steps will reproduce the problem?
My last random game used Courtyard, Chapel, Scrying Pool, Menagerie, Lookout,
Nomad Camp, Remake, Monument, City, and Margrave. I have played this set
sev…
-
In the following program I have a GPU kernel write the same values to an array, tuple, and c_array.
```chpl
use CTypes, GPU;
config param N = 10;
proc main() {
on here.gpus[0] {
var …
-
Can we implement the core functionality of PCGRandomStream in a way that is independent of `eltType`?
This way we can reduce the amount of code duplication that results from instantiating PCGRandom…
-
This issue asks a questions about how tuple declarations should combine with multiple variable declarations. See also https://chapel-lang.org/docs/language/spec/variables.html#multiple-variable-declar…
-
For performance testing or when we have a timeout our testing system reports processes with the highest cpu utilization. This is intended to help us track down if regressions/timeouts were caused by a…
-
As CHIP 6 https://github.com/chapel-lang/chapel/blob/master/doc/rst/developer/chips/6.rst describes, the default intent for tuples is intended to mimic the default intent of the elements. In this way,…
-
When a class is iterated over via one of its these() methods, the user has to explicitly `borrow()` in several cases to make the compiler accept the code.
It would be nice to avoid that and do the …
-
Missing Binders
===============
Find evidence to spawn last missing binders
Refuge Point (Arathi, Alliance)
------------------------
Refuge point is missing binder, regarding to arathi rang…
-
As an advanced Chapel programmer, while working with distributed sparse domains, I found myself wanting to do operations on its local sparse domain independently of the global whole. I was thinking t…