-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from mrphys/nufft-1d-gpu
Implement 1D NUFFT for GPU
- Loading branch information
Showing
12 changed files
with
850 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,7 @@ | ||
# Release 0.11.0 | ||
# Release 0.12.0 | ||
|
||
## Major Features and Improvements | ||
|
||
- Added new option `points_range` to control the range supported by the | ||
algorithm. This option provides a trade-off between flexibility and | ||
performance. | ||
- Added new option `debugging.check_points_range` to assert that the input | ||
points lie within the supported range. | ||
This release is compiled against TensorFlow 2.11. | ||
|
||
## Bug Fixes and Other Changes | ||
## Major Features and Improvements | ||
|
||
- `nufft` type-1 will now raise an error when `source` and `points` have | ||
incompatible samples dimensions. Previously the computation would have | ||
proceeded, ignoring any additional samples in `source`. | ||
- Improved error reporting for invalid `grid_shape` arguments. `nufft` will | ||
now raise an informative error when `grid_shape` has an invalid length or | ||
when the user fails to provide it for type-1 transforms. Previously, `nufft` | ||
would have behaved erratically or crashed. | ||
- Added support for 1D transforms to the GPU kernel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
packaging | ||
pydantic | ||
tensorflow>=2.10.0,<2.11.0 | ||
tensorflow>=2.11.0,<2.12.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ | |
__summary__ = "A fast, native non-uniform FFT op for TensorFlow." | ||
__uri__ = "https://github.com/mrphys/tensorflow-nufft" | ||
|
||
__version__ = "0.11.0" | ||
__version__ = "0.12.0" | ||
|
||
__author__ = "Javier Montalt Tordera" | ||
__email__ = "[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.