You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
x += I1[i] * I2[j] * Operators.get_node(space, field, ij, slabidx)
end
return x
end
These functions do not run on a GPU because of the explicit indexing.
A temporary workaround might be to make them vector/matrix multiplications by allocating locally a matrix with the values of the nodes. This might be acceptable for the moment, given that Nq is typically not very large and because this is done only when the diagnostic is output (which might be once every 12 hours).
The text was updated successfully, but these errors were encountered:
ClimaCore.jl/src/Remapping/interpolate_array.jl
Lines 1 to 34 in 9c22047
These functions do not run on a GPU because of the explicit indexing.
A temporary workaround might be to make them vector/matrix multiplications by allocating locally a matrix with the values of the nodes. This might be acceptable for the moment, given that Nq is typically not very large and because this is done only when the diagnostic is output (which might be once every 12 hours).
The text was updated successfully, but these errors were encountered: