Any function like `push!` for `CuArray`

I was wondering if there is any function like push! that works for CuArray? Thanks!

I’m pretty sure no such function exists. This would makes sense as push! is an inherently serial operation, so incompatible with the parallel GPU programming model.

1 Like

I see thanks! @eldee

1 Like