You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
examples/voxtral_tts: add make target + align README with qwen3_5_moe layout
- Revert CLAUDE.md edit that slipped into the prior commit (out of scope).
- Add `voxtral_tts-cpu` and `voxtral_tts-cuda` Makefile targets following
the same pattern voxtral_realtime / qwen3_5_moe use, including .PHONY +
help-text entries. `make voxtral_tts-cuda` now builds parent ExecuTorch
with CUDA + the runner in one step.
- Rewrite README.md to mirror qwen3_5_moe's layout: Overview, Prerequisites,
Export (with options table), Build (one-line `make` command), Run (with
options table), Troubleshooting. Drops the previous mixed
Architecture/Quick-Start/Build/Run shape.
Authored with Claude (Anthropic) assistance.
ExecuTorch model exports and large builds (CMake configure+build of LLM runners, AOT lowering, NeMo restore, big HF downloads) can hang silently and may not surface an exit code through pipes like `tail`. For those long jobs only, poll progress every ~120s — check the process state (`ps`, `py-spy dump`), output file growth, and network/file activity — rather than waiting indefinitely on the original Bash invocation. Avoid wrapping with `| tail` for long jobs since it buffers and hides progress; tee to a log file or run unwrapped. Normal short commands don't need this — run them directly and trust the exit code.
37
-
38
34
## Naming
39
35
40
36
- Use "executorch" (lowercase) or "ExecuTorch" (camel case)
0 commit comments