Skip to content

Commit

Permalink
Merge pull request #331 from FourierFlows/ncc/always-load-gpu
Browse files Browse the repository at this point in the history
  • Loading branch information
navidcy committed Aug 30, 2022
2 parents 47ad914 + 90c5942 commit 7a7b48d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Gregory L. Wagner <[email protected]>", "Navid C. Constantinou <
description = "Tools for building fast, hackable, pseudospectral partial differential equation solvers on periodic domains."
documentation = "https://fourierflows.github.io/FourierFlowsDocumentation/stable/"
repository = "https://github.com/FourierFlows/FourierFlows.jl"
version = "0.9.3"
version = "0.9.4"

[deps]
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ and [Navid C. Constantinou][] (@navidcy).

The code is citable via [zenodo](https://zenodo.org). Please cite as:

> Gregory L. Wagner, Navid C. Constantinou, and contributors. (2022). FourierFlows/FourierFlows.jl: FourierFlows v0.9.3 (Version v0.9.3). Zenodo. [http://doi.org/10.5281/zenodo.1161724](http://doi.org/10.5281/zenodo.1161724)
> Gregory L. Wagner, Navid C. Constantinou, and contributors. (2022). FourierFlows/FourierFlows.jl: FourierFlows v0.9.4 (Version v0.9.4). Zenodo. [http://doi.org/10.5281/zenodo.1161724](http://doi.org/10.5281/zenodo.1161724)

## Contributing
Expand Down
6 changes: 2 additions & 4 deletions src/FourierFlows.jl
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,8 @@ include("timesteppers.jl")
include("diffusion.jl")

# CUDA functionality
if CUDA.functional()
@info "GPU functionality for FourierFlows is loaded"
include("CuFourierFlows.jl")
end
include("CuFourierFlows.jl")


function __init__()
threads = Threads.nthreads()
Expand Down

2 comments on commit 7a7b48d

@navidcy
Copy link
Member Author

Choose a reason for hiding this comment

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

@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/67339

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.9.4 -m "<description of version>" 7a7b48d05224b085a42133ac3894108d6911ecd9
git push origin v0.9.4

Please sign in to comment.