Skip to content

Commit 2c875b0

Browse files
authored
Merge pull request #2317 from CliMA/as/revert-shmem
Disable shmem + update patch version > 0.14.32
2 parents 9f94496 + e3e4139 commit 2c875b0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ClimaCore"
22
uuid = "d414da3d-4745-48bb-8d80-42e94e092884"
33
authors = ["CliMA Contributors <[email protected]>"]
4-
version = "0.14.31"
4+
version = "0.14.32"
55

66
[deps]
77
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"

src/Operators/finitedifference.jl

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4177,12 +4177,15 @@ end
41774177
"""
41784178
use_fd_shmem()
41794179
4180-
Allows users to, from global scope, disable finite
4180+
Allows users to, from global scope, enable finite
41814181
difference shmem for operators that support it.
4182+
TODO: ~30% slowdown was noticed with CC 0.14.31
4183+
in Aquaplanet benchmarks. This may need attention in
4184+
future releases
41824185
41834186
## Usage
41844187
```julia
41854188
Operators.use_fd_shmem() = false
41864189
```
41874190
"""
4188-
use_fd_shmem() = true
4191+
use_fd_shmem() = false

0 commit comments

Comments
 (0)