Jade Abraham

Results 72 issues of Jade Abraham

### Summary of Problem **Description:** Attempting to incorrectly use `forwarding` on a module-scoped variable or expression results in an internal error. This should just be an error message that `forwarding`...

type: Bug
area: Compiler
type: Error Message

Our docs are currently structured as follows - ... - Using Chapel - ... - Multilocale Chapel Execution - ... - Platform Specific - Major Platforms - ... - Networks...

area: Runtime
area: Docs
type: Refactor

Today, Chapel allows you to oversubscribe both tasks and locales. This allows users to emulate more cores or nodes. It would be nice to also allow over-subscription with GPUs. We...

type: Feature Request
area: GPU Support

The following code encounters an internal error during resolution ```chapel const arr = [1,2,3]; const cond = true; proc foo() const ref { if cond then return arr; else {...

type: Bug
area: Compiler

The following code causes an internal error ```chapel coforall i in 1..10 with (ref sum2) { sum2 += i; } ``` It does not matter what the intent is, it...

type: Bug
area: Compiler

I found that statements like `import A.B` and `use A.B` are not resolved correctly by CLS when a user tries to goto-defintion on `A` and `B`. `import A.B` always resolves...

type: Bug
area: Tools
area: Python bindings

We currently have limited-to-no support for using `complex` numbers in a GPU kernel. I tried a number of simple cases with complex numbers to get an idea of where our...

type: Unimplemented Feature
area: GPU Support

Removes mentions of alinux2 from the AWS docs, as alinux2023 is the preferred OS and pcluster 3.10+ supports it. While there, makes a few other tweaks to the docs (like...

I came to the unfortunate realization while working on the binarytrees benchmark that no matter what all Chapel classes have as their first element a "super" field. This means that...

area: Compiler
type: Feature Request

I have found the following situations where the 'domain' keyword/typename is not allowed, where I think maybe it should be. All of the following situations result in syntax errors. This...

type: Bug
type: Design
area: Compiler
area: Language