AccelerateHS / AccelerateHS/accelerate
Mutable arrays / lower level interface
- Lenguaje dominante
- Haskell
- Estrellas
- 1k
- Forks
- 135
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
Hi,
I figured this would be a good place to post this.
For more memory reusing one could use a lower level interface bridging between accelerate and cuda. Something along the lines of:
ptr1 <- getDevicePtr $ use initialData
ptr2 <- getDevicePtr newDeviceArray
krn <- getKernel algorithm
result <- sequence . take steps . cycle $ [krn ptr1 ptr2, krn ptr2 ptr1]
Where krn p1 p2 would indicate p1 as input and p2 as output array.
In my case this is motivated by the fact that my kernel takes at most few hundred ms to execude, while the whole step with allocation takes a few seconds. With hundreds of steps and enough samples for statistics this is unacceptable (and obviously I'd love to do my stuff in haskell and not C++).
Would it be a difficult task to add this features? Or maybe there's another way of reusing memory? I tried keeping my loop in Acc, but it was no good either (according to -ddump-gc output arrays were reallocated anyway, and I couldn't do stuff between steps).
Thanks for your consideration
Jan Sikorski
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.