Skip to content

Commit

Permalink
Merge pull request #2288 from FluxML/mcabbott-patch-2
Browse files Browse the repository at this point in the history
Update NEWS.md for 0.14 release
  • Loading branch information
mcabbott authored Jul 14, 2023
2 parents 95880e2 + a6f020c commit 8c23af3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@

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

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

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

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

Expand Down

0 comments on commit 8c23af3

Please sign in to comment.