Skip to content

add Field sum reproducer #2131

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions test/Fields/sum_repro.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import ClimaComms
ClimaComms.@import_required_backends
import ClimaCore
import ClimaCore: Fields
using Test

include(
joinpath(pkgdir(ClimaCore), "test", "TestUtilities", "TestUtilities.jl"),
)
import .TestUtilities as TU

@testset "Sum function over field" begin
FT = Float32
context = ClimaComms.context()

space = TU.SpectralElementSpace2D(FT; context)
field = Fields.zeros(space)
f = x -> x + 1

# Sum of a function applied to a field should be the same as the sum of the
# function applied to the parent field, but it isn't
@test sum(f, field) != sum(f, parent(field))
@test sum(f.(field)) != sum(f.(parent(field)))
end
Loading