harlan icon indicating copy to clipboard operation
harlan copied to clipboard

A language for GPU computing.

Results 68 harlan issues
Sort by recently updated
recently updated
newest added

Running a kernel over a vector that looks like this: ``` (vector (vector 1) (iota 1000000) (vector 1 2 3)) ``` basically runs sequentially, since each dimension of the kernel...

Hard
Optimization
Necessary

Whether this means throwing a compile time error (easier), or running on the CPU at runtime (harder), we have to do _something_.

Medium
Necessary

Ryan is interested in using Harlan as a backend for GPU computing in MonadPar (I think). To make this easier and faster, it'd be nice if Harlan had a JIT...

Accelerate
Necessary

You can put a zero length vector as a kernel argument, which causes errors in OpenCL. We should either make this an error, or make our kernels evaluate to zero-length...

Easy
Bug
Necessary

For example, it is possible that `x` in this example is not a perfectly rectangular, ``` (kernel ((row x) ((i row)) ...) ``` but if it _is_ rectangular (or, close...

Medium
Optimization
Proposal

CUDA and OpenCL don't seem to provide this already. Since we are generating our own code, there's a chance we could do this. This would be really handy for people...

Hard
Proposal
Nice to have

We should add Scheme-style symbols. As long as we don't include things like `(string->symbol ...)`, it shouldn't cause too many problems. Basically, we'd create symbols by doing `'x`. Then we'd...

Proposal

There are a few xfailed tests that are progress towards this issue, but none of them are complete..

Hard
Proposal
Regions Paper
Nice to have