-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make integration gpu compatible #162
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #162 +/- ##
==========================================
+ Coverage 98.17% 98.21% +0.04%
==========================================
Files 8 9 +1
Lines 493 505 +12
==========================================
+ Hits 484 496 +12
Misses 9 9 ☔ View full report in Codecov by Sentry. |
n_bins_per_log_unit = 15, | ||
) where {FT <: Real} | ||
x_threshold::FT, | ||
::Val{n_bins} = Val(100), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I remember we changed this from n_bins to n_bins_per_log_unit because in some of the examples where the range of scales is larger the results were not reasonable/satisfactory (because of inaccurate numerical integrations). Would it be possible to keep n_bins_per_log_unit?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately not, because to create an SVector the size must use something in type space and cannot use something that is computed within the body
minimum(dx) ≈ maximum(dx) || error("x must be evenly spaced") | ||
|
||
@inbounds retval = | ||
@fastmath @inbounds retval = |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How much is @fastmath
helping here? There are some issues with @fastmath
that I'd rather avoid. e.g., JuliaLang/julia#36214, JuliaLang/julia#36246.
I think there's other ways that we can improve performance without @fastmath
minimum(dx) ≈ maximum(dx) || error("x must be evenly spaced") | ||
|
||
@inbounds retval = | ||
@fastmath @inbounds retval = | ||
sum(y[5:(K - 4)]) + |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is 5:(K - 4)
intended?
julia> collect(5:(4 - 4))
Int64[]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Rather than making large SVector
s in moment_source_helper
, doing things lazily may be faster (especially on the gpu with SVectors/Tuples of size 100), can we compare the performance against a lazy implementation? E.g., something like:
function integrate_SimpsonEvenFast(::Val{n_bins}, x_min::FT, dx::FT, y::F) where {FT <: Real, F, n_bins}
n_bins ≥ 3 || error("n_bins must be at least 3")
# dx = SVector{K - 1}(x[2:end] - x[1:(end - 1)])
# need to figure out how to verify this if still applicable
# is_uniform(dx) || error("x must be evenly spaced")
e = n_bins + 1
@inbounds begin
retval =
sum(j-> y(j), 5:(n_bins-3)) +
(17 * (y(1) + y(e)) + 59 * (y(2) + y(e - 1)) + 43 * (y(3) + y(e - 2)) + 49 * (y(4) + y(e - 3))) / 48
return (logx(x_min, 2, dx) - logx(x_min, 1, dx)) * retval
end
end
logx(x_min::FT, j::Int, dx::FT) where {FT} = x_min + (j - 1) * dx
function moment_source_helper(
dist::GammaPrimitiveParticleDistribution{FT},
p1::FT,
p2::FT,
x_threshold::FT,
::Val{n_bins} = Val(100),
) where {n_bins, FT <: Real}
(; n, θ, k) = dist
f(x) = x^(p1 + k - 1) * exp(-x / θ) * gamma_inc(p2 + k, (x_threshold - x) / θ)[1] * gamma(p2 + k)
x_lowerbound = FT(min(FT(1e-5), FT(1e-5) * x_threshold))
x_min = log(x_lowerbound)
dx = (log(x_threshold) - log(x_lowerbound)) / n_bins
y_func(j) = j <= n_bins ? exp(logx(x_min, j, dx)) * f(exp(logx(x_min, j, dx))) : zero(typeof(dx))
return n^2 * θ^(p2 - k) / gamma(k)^2 * integrate_SimpsonEvenFast(Val(n_bins), x_min, dx, y_func)
end
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
|
||
x_lowerbound = FT(min(1e-5, 1e-5 * x_threshold)) | ||
x_lowerbound = FT(min(FT(1e-5), FT(1e-5) * x_threshold)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't think you need the outer FT
if you're wrapping the inner expressions with it. i.e. this could be:
x_lowerbound = min(FT(1e-5), FT(1e-5) * x_threshold)
|
||
x_lowerbound = FT(min(1e-5, 1e-5 * x_threshold)) | ||
x_lowerbound = FT(min(FT(1e-5), FT(1e-5) * x_threshold)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same note as above, you can remove the outer FT now (it might be cleaner)
@@ -8,14 +9,20 @@ import Cloudy.ParticleDistributions: integrate_SimpsonEvenFast | |||
|
|||
# Adapted from CloudMicrophysics.jl | |||
|
|||
function bench_press(foo, args, max_run_time; max_mem = 0.0, max_allocs = 0.0, print_args = true) | |||
struct CallAndReturnNothing{F} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why did you add this? Just curious what it helps with :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's to avoid counting the allocations that to go the return value -- Charlie/Dennis' suggestion :)
Purpose
Touches
integrate_simpon_evenfast
To-do
Content