Skip to content

MLX Go Bindings v0.30.2

Latest

Choose a tag to compare

@github-actions github-actions released this 28 Dec 23:32
· 6 commits to main since this release

Pre-compiled MLX C++ libraries for Go bindings

Platform Support

  • ✅ macOS ARM64 (M1/M2/M3/M4) - Metal GPU acceleration
  • ✅ Linux x64 - CPU backend with OpenBLAS
  • ⚠️ Windows x64 - ONNX runtime recommended (MLX has MSVC compatibility issues)
  • ⚠️ macOS x64 (Intel) - Build from source or use ONNX

Quick Install

macOS ARM64 (Recommended)

curl -LO https://github.com/luxfi/mlx/releases/latest/download/libmlx-macos-arm64.tar.gz
mkdir -p lib
tar -xzf libmlx-macos-arm64.tar.gz -C lib/

Linux x64

curl -LO https://github.com/luxfi/mlx/releases/latest/download/libmlx-linux-x64.tar.gz
mkdir -p lib
tar -xzf libmlx-linux-x64.tar.gz -C lib/

See BINARIES.md for complete installation instructions.