Skip to content

Commit

Permalink
don't test multilaerqg on gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Mar 2, 2021
1 parent c31be6d commit 5b5dcf5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ All modules provide solvers on two-dimensional domains. We currently provide
* `TwoDNavierStokes`: the two-dimensional vorticity equation.
* `BarotropicQG`: the barotropic quasi-geostrophic equation, which generalizes `TwoDNavierStokes` to cases with topography and Coriolis parameters of the form `f = f₀ + βy`.
* `BarotropicQGQL`: the quasi-linear barotropic quasi-geostrophic equation.
* `MultilayerQG`: a multi-layer quasi-geostrophic model over topography and with the ability to impose a zonal flow `U_n(y)` in each layer.
* `MultilayerQG`: a multi-layer quasi-geostrophic model over topography and with the ability to impose a zonal flow `U_n(y)` in each layer. [*Note*: `MultilayerQG` is not tested on GPU; if you want to use `MultilayerQG` on the GPU use GeophysicalFlows.jl v0.11 or later.]
* `SurfaceQG`: a surface quasi-geostrophic model.


Expand Down
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ for dev in devices
@test test_sqg_noforcing(dev)
@test SurfaceQG.nothingfunction() == nothing
end

end

for dev in (CPU(),)
@testset "MultilayerQG" begin
include("test_multilayerqg.jl")

Expand Down

2 comments on commit 5b5dcf5

@navidcy
Copy link
Member Author

@navidcy navidcy commented on 5b5dcf5 Mar 2, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register branch=ncc/fix-error-in-julia-1.4-try2

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/31169

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.8.5 -m "<description of version>" 5b5dcf5772b01100de078116f705aaeef044a956
git push origin v0.8.5

Please sign in to comment.