Types of parameters that can be passed to forcing function on GPU #2565
Unanswered
raphaelouillon
asked this question in
Computational science!
Replies: 2 comments 7 replies
-
On Nvidia GPUs we use |
Beta Was this translation helpful? Give feedback.
3 replies
-
If I may ask, can you describe the problem you're trying to solve in more general terms? I wonder if we can implement it without interpolation. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi all,
I am interested in a simulation where a buoyancy source moves in space and time and the position of the source is interpolated from a time and position array. It appears that Interpolations.jl doesn't work on GPU, so I tried instead to pass the time and position arrays as parameters to the forcing function, but that return an error, as the arrays I am passing to the function are CPU arrays of type
Vector{Float64}
and not GPU compatible. Is there a way I can pass arrays to the forcing function?Beta Was this translation helpful? Give feedback.
All reactions