Skip to content

Tags: gomlx/gomlx

Tags

v0.23.2

Toggle v0.23.2's commit message
Small fix to Dockerfile.

v0.23.1

Toggle v0.23.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #215 from gomlx/bump

Bumping version for v0.23.1 release.

v0.23.0

Toggle v0.23.0's commit message
chore: Updated coverage badge.

v0.22.1

Toggle v0.22.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #208 from gomlx/conv_bug

Fixed order of channels when Channels configured with ChannelsFirst.

v0.22.0

Toggle v0.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #206 from gomlx/conv_grad

Conv grad

v0.21.1

Toggle v0.21.1's commit message
Updated toolchain Go version.

cmd/gomlx_checkpoints/v0.1.0

Toggle cmd/gomlx_checkpoints/v0.1.0's commit message
Updated gomlx_checkpoints to new gomlx release.

v0.21.0

Toggle v0.21.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #188 from gomlx/nans

v0.21.0: 2025/07/01 🌞 Summer Edition 🌞

v0.20.1

Toggle v0.20.1's commit message
Updated go version for docker.

v0.20.0

Toggle v0.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Merge pull request #180 from gomlx/be_err

* Package `backends`:
  * **API BREAKING CHANGE**: Methods `backends.NewWithConfig()`, `xla.New()` and `simplego.New()` all changed,
    now they return also an error.
  * Method **`backends.New()` will be changed to return an error (as opposed to panic) at next version**.
    Temporarily the methods `MustNew()` (which panics on errors, like today) and `NewOrErr` (which returns
    an error) were created to have a clear API, and `New()` was marked as deprecated. 
  * Added `IsFinalized()` to the Backend API, to better handle attempts to access finalized backends.
  * Fixed bug in `xla` backend where an error was not being sent when Backend was already finalized.
* Package `types/tensors/numpy` with methods to read and write tensors from/to `.npy` and `.npz` files.
* Package `simplego`:
  * Fixed bug introduced in parallelize version of `Erf(x)`.
* Package `tensors`:
  * Added `Tensor.ToLocal()` to detach a tensor from its backend.
* Package `ui/gonb/plotly`: 
  * Update dependencies to new go-plotly v0.7.0 (many changes to the API), while preserving as much as possible
    the GoMLX api offered.
* Updated example notebooks to use `github.com/gomlx/gomlx/backends/default` (instead of only `/xla`) and to
  use the new `backends.MustNew()`.