Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
7c77f32
Merge pull request #283 from oxideai/release/0.25.2
minghuaw Oct 4, 2025
5f15c62
perf: Achieve Python parity with async pipelining and KVCache fix
ymote Jan 20, 2026
9ecaf72
perf: Remove unnecessary clones and add first-token sync
ymote Jan 20, 2026
d90308a
fix: Remove unnecessary reshape in RoPE that broke multi-head attention
ymote Jan 22, 2026
3183ff4
perf: Fix async pipelining for ~27% throughput improvement
ymote Jan 22, 2026
4f262b7
feat: Add GPT-SoVITS voice cloning (pure Rust)
ymote Jan 23, 2026
65092ce
feat: Add FunASR Paraformer ASR model (pure Rust)
ymote Jan 24, 2026
b2a29dc
perf: Fix Mistral example and add performance benchmarks
ymote Jan 25, 2026
5301100
feat: Add mistral-mlx crate with shared mlx-lm-core
ymote Jan 25, 2026
7b65e46
docs: Update Mistral benchmark to reflect mistral-mlx performance
ymote Jan 25, 2026
5ac9d70
feat: Add G2PW polyphonic character disambiguation (ONNX)
ymote Jan 25, 2026
e85bfde
fix: Add rule-based G2P for unknown English words
ymote Jan 25, 2026
34bfb70
perf: Add CoreML GPU/ANE acceleration for G2PW
ymote Jan 25, 2026
ee39904
feat: Add English number pronunciation for mixed text
ymote Jan 25, 2026
33385fb
docs: Add comprehensive model user guide
ymote Jan 25, 2026
b5ff9d8
refactor: Use num2en crate for English number conversion
ymote Jan 25, 2026
6f26391
fix: Strip boundary punctuation and improve number segmentation
ymote Jan 25, 2026
98c08a4
docs: Add TTS performance benchmark and update skills
ymote Jan 25, 2026
30b4be1
Add contiguity check to try_as_slice() and contiguous() function
ymote Jan 25, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 14 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,20 @@ members = [
"mlx-sys",
"mlx-rs",
"mlx-internal-macros",
"mlx-lm",
"mlx-lm-utils",
"mlx-rs-lm",
"mlx-lm-utils",
"mlx-lm-core",
"mlx-tests",
"examples/*",
"flux-klein-mlx",
"zimage-mlx",
"funasr-mlx",
"qwen3-mlx",
"glm4-mlx",
"glm4-moe-mlx",
"mixtral-mlx",
"mistral-mlx",
"qwen-image-mlx",
"examples/*",
]

resolver = "2"
Expand All @@ -35,7 +45,7 @@ mlx-sys = { version = "=0.2.0", path = "mlx-sys" }
mlx-macros = { version = "0.25", path = "mlx-macros" }
mlx-internal-macros = { version = "0.25", path = "mlx-internal-macros" }
mlx-rs = { version = "0.25", path = "mlx-rs" }
mlx-lm = { version = "0.0.1", path = "mlx-lm" }
mlx-rs-lm = { version = "0.0.1", path = "mlx-rs-lm" }
mlx-lm-utils = { version = "0.0.1", path = "mlx-lm-utils" }

# external dependencies
Expand Down
Loading