AccelerateHS / AccelerateHS/accelerate
Mutable arrays / lower level interface
- Dominant language
- Haskell
- Stars
- 1k
- Forks
- 135
- PR merge metrics
- No merged PRs in 30d
Description
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
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.