-
Notifications
You must be signed in to change notification settings - Fork 15
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 #46 from JuliaGPU/tb/updates
Updates
- Loading branch information
Showing
8 changed files
with
57 additions
and
14 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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
+++ | ||
title = "CUDA.jl 5.5: Maintenance release" | ||
author = "Tim Besard" | ||
abstract = """ | ||
CUDA.jl 5.5 is a minor release that comes with a couple of small improvements | ||
and new features.""" | ||
+++ | ||
|
||
{{abstract}} | ||
|
||
The only important change is that the minimal required Julia version has been | ||
bumped to 1.10, in anticipation of it becoming the next LTS release. | ||
|
||
|
||
## New features | ||
|
||
- Support for the upcoming Julia 1.11 release has been added, as well as for | ||
[CUDA 12.6 (Update 1)](https://github.com/JuliaGPU/CUDA.jl/pull/2461). | ||
- Launch overhead has been reduced by [avoiding double argument | ||
conversions](https://github.com/JuliaGPU/CUDA.jl/pull/2472). Note that this | ||
does not apply to kernels that are obtained using `@cuda launch=false`. | ||
- CUSOLVER's dense wrappers have been improved by [Ben | ||
Arthur](https://github.com/bjarthur), [now caching workspace | ||
buffers](https://github.com/JuliaGPU/CUDA.jl/pull/2465). This should greatly | ||
reduce the number of allocations needed for repeated calls. | ||
- [Alexis Montoison](https://github.com/amontoison) has improved the CUSPARSE | ||
wrappers, adding [conversions between sparse vectors and sparse | ||
matrices](https://github.com/JuliaGPU/CUDA.jl/pull/2489) that enable [a | ||
version of `gemv`](https://github.com/JuliaGPU/CUDA.jl/pull/2488) which | ||
preserves sparsity of the inputs. | ||
- CUDA.jl's CUFFT wrappers [now support | ||
`Float16`](https://github.com/JuliaGPU/CUDA.jl/pull/2430), thanks to [Erik | ||
Schnetter](https://github.com/eschnett). |