Skip to content

Commit 8c23af3

Browse files
authored
Merge pull request #2288 from FluxML/mcabbott-patch-2
Update NEWS.md for 0.14 release
2 parents 95880e2 + a6f020c commit 8c23af3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

NEWS.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22

33
See also [github's page](https://github.com/FluxML/Flux.jl/releases) for a complete list of PRs merged before each release.
44

5-
## v0.14.0
5+
## v0.14.0 (July 2023)
66
* Flux now requires julia v1.9 or later.
7-
* CUDA.jl is not a hard dependency anymore. CUDA support is now provided through the extension mechanism. In order to unlock the CUDA
8-
functionalities user are required to load CUDA, e.g. with `using CUDA`.
9-
The package `cuDNN.jl` also needs to be installed in the environment.
7+
* CUDA.jl is not a hard dependency anymore. Support is now provided through the extension mechanism, by loading `using Flux, CUDA`.
8+
The package cuDNN.jl also needs to be installed in the environment. (You will get instructions if this is missing.)
9+
* After a deprecations cycle, the macro `@epochs` and the functions `Flux.stop`, `Flux.skip`, `Flux.zeros`, `Flux.ones` have been removed.
1010

1111
## v0.13.17
1212
* Apple's Metal GPU acceleration preliminary support via the extension mechanism.
1313

1414
## v0.13.16
1515
* Most greek-letter keyword arguments are deprecated in favour of ascii.
1616
Thus `LayerNorm(3; ϵ=1e-4)` (not `ε`!) should become `LayerNorm(3; eps=1e-4)`.
17-
* `DataLoader(...) |> gpu` will now produce a special iterator, moving each batch as needed,
17+
* `DataLoader(...) |> gpu` will now produce a special iterator, moving each batch as needed,
1818
instead of giving an error.
1919
* Added `Flux.state` returning the internal state of the model for serialization.
2020

0 commit comments

Comments
 (0)