Skip to content

Commit

Permalink
Merge pull request #139 from JuliaMath/deprcCuNFFT
Browse files Browse the repository at this point in the history
Deprecate CuNFFT
  • Loading branch information
nHackel authored Jul 4, 2024
2 parents 685cf91 + 1dd3786 commit da7d897
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CuNFFT/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CuNFFT"
uuid = "a9291f20-7f4c-4d50-b30d-4e07b13252e1"
author = ["Tobias Knopp <tobias@knoppweb.de>"]
version = "0.3.7"
version = "0.3.8"

[deps]
AbstractFFTs = "621f4979-c628-5d54-868e-fcf4e3e8185c"
Expand Down
7 changes: 7 additions & 0 deletions CuNFFT/src/CuNFFT.jl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ using AbstractFFTs
using CUDA
using CUDA.CUSPARSE

function __init__()
@warn """Please be aware that CuNFFT.jl has been deprecated by a package extension in NFFT.jl.
As a result, no additional packages are required to run an NFFT on a GPU.
To remove this warning when continuing to use CuNFFT.jl, please pin CuNFFT.jl to version 0.3.7."""
end

include("implementation.jl")

end

2 comments on commit da7d897

@nHackel
Copy link
Collaborator Author

@nHackel nHackel commented on da7d897 Jul 4, 2024

Choose a reason for hiding this comment

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

@JuliaRegistrator register subdir=CuNFFT

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

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

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 CuNFFT-v0.3.8 -m "<description of version>" da7d89700f4a806746c6907fd85584ba0a1d1955
git push origin CuNFFT-v0.3.8

Please sign in to comment.