Resize in Accelerate

186 Views Asked by At

I have been experimenting with Haskell's Accelerate and I was wondering how I could resize a vector (Array DIM1 a)? I noticed reshape but it the size of the source and result must be the same but I want to double the size.

1

There are 1 best solutions below

2
On

Going by Do Accelerate and Repa have different use cases?:

Accelerate is an embedded language for GPU programming. Accelerate relies on its own compiler and GPU parallelism for performance. A piece of code using the Accelerate library doesn't actually do array computation. It generates an Accelerate program, which is processed by Accelerate's own compiler to generate the code that actually processes your array data.

It's likely impossible, since CUDA uses standard C arrays size of which can't be changed.