chapel icon indicating copy to clipboard operation
chapel copied to clipboard

a Productive Parallel Programming Language

Results 276 chapel issues
Sort by recently updated
recently updated
newest added

Expands the Image module support to also work with PNG and JPG. With this effort, I have also added the ability to read images with Chapel code as well. This...

The following program causes a segmentation fault on my `main` (c5ff3f70c6e654c8a342fabcbfbf87704a784786) ```Chapel proc computeType(x: int) type do return [x..x] int; var A: computeType(1); // segmentation fault ``` Not yet sure...

type: Bug

The following `blockDist.createArray` procedure is currently marked unstable while design continues on it ``` @unstable("'blockDist.createArray' with an 'initExpr' formal is unstable and may change in a future release") proc type...

type: Stabilization

Implicit reads/writes of sync variables have been deprecated for some time now, though we retained the feature for an unusual amount of time, being concerned about the impact on initializers....

area: Libraries / Modules
area: Language
type: Stabilization

Reduce the amount of fine-grained communication incurred by `stencilArr.updateFluff` using privitization. I also tested a few other changes to `updateFluff` on a navier-stokes benchmark. All of these either hurt performance...

### Summary of Problem **Description:** Incorrectly specifying and calling an extern function results in an internal error with the LLVM backend. If `CHPL_DEVELOPER` is set or `--verify` is used, the...

type: Bug
area: Compiler
type: Error Message

### Summary of Feature **Description:** Twice I have needed an untyped JSON value for the output of JSON parsing. Serializers and deserializers are great, but if your JSON structure is...

area: Libraries / Modules
type: Feature Request

### Summary of Feature **Description:** It would be nice if there was a flag/config param that would make it so ```chapel writeln(1,2,3); ``` gave ```chapel 1 2 3 ``` **Is...

type: Design
area: Libraries / Modules
type: Feature Request
user issue

### Summary of Problem **Description:** I have to declare the return type for a function because it is recursive, but when I do that, it increases the memory usage significantly...

type: Bug

### Summary of Feature **Description:** Add argmax and argmin functions for arrays and homogeneous tuples. **Is this issue currently blocking your progress?** No. I have come up with a solution,...

type: Feature Request