Skip to content

Commit

Permalink
chore: bump to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
polvalente committed Sep 26, 2024
1 parent 633db2f commit 0e708f1
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 7 deletions.
11 changes: 11 additions & 0 deletions exla/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.9.0 (2024-09-26)

### Enhancements

* Overall improvements to the Nx.Defn compiler
* Compiled functions now work across BEAM nodes

### Bug fixes

* Use a single thread pool for MLIR contexts

## v0.8.0 (2024-08-19)

* Add `EXLA.to_mlir_module/2`
Expand Down
6 changes: 3 additions & 3 deletions exla/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule EXLA.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/nx"
@version "0.8.0"
@version "0.9.0"

def project do
make_args =
Expand Down Expand Up @@ -63,8 +63,8 @@ defmodule EXLA.MixProject do

defp deps do
[
# {:nx, "~> 0.8.0"},
{:nx, path: "../nx"},
{:nx, "~> 0.9.0"},
# {:nx, path: "../nx"},
{:telemetry, "~> 0.4.0 or ~> 1.0"},
{:xla, "~> 0.8.0", runtime: false},
{:elixir_make, "~> 0.6", runtime: false},
Expand Down
17 changes: 17 additions & 0 deletions nx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## v0.9.0 (2024-09-26)

### Enhancements

* [Nx] Added 8-bit Floating Point numerical type
* [Nx] New interface for `Nx.to_pointer` and `Nx.from_pointer`

### Bug fixes

* [Nx] Minor range slicing fixes on QR decomposition
* [Nx] Nx.Defn.Grad now supports more vectorization cases

### Deprecations and incompatibilities

* [Nx] Default integer type is now `s32`
* [Nx] Interface breaking changes for `Nx.to_pointer` and `Nx.from_pointer`

## v0.8.0 (2024-08-19)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion nx/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Nx.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/nx"
@version "0.8.0"
@version "0.9.0"

def project do
[
Expand Down
4 changes: 4 additions & 0 deletions torchx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## v0.9.0 (2024-09-26)

* Update to latest Nx

## v0.8.0 (2024-08-19)

* Update to latest Nx
Expand Down
6 changes: 3 additions & 3 deletions torchx/mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Torchx.MixProject do
use Mix.Project

@source_url "https://github.com/elixir-nx/nx"
@version "0.8.0"
@version "0.9.0"

@libtorch_compilers [:torchx, :cmake]

Expand Down Expand Up @@ -41,8 +41,8 @@ defmodule Torchx.MixProject do

defp deps do
[
# {:nx, "~> 0.8.0"},
{:nx, path: "../nx"},
{:nx, "~> 0.9.0"},
# {:nx, path: "../nx"},
{:ex_doc, "~> 0.29", only: :docs}
]
end
Expand Down

0 comments on commit 0e708f1

Please sign in to comment.