Releases: ROCm/rocm-cli
Releases · ROCm/rocm-cli
Release list
rocm-cli v0.1.0-rc.2
Install the latest stable release on Linux x86_64:
curl -fsSL https://raw.githubusercontent.com/ROCm/rocm-cli/main/install.sh | shInstall the latest stable release on Windows x86_64 from PowerShell:
$script = "$env:TEMP\install-rocm-cli.ps1"; irm https://raw.githubusercontent.com/ROCm/rocm-cli/main/install.ps1 -OutFile $script; powershell -ExecutionPolicy Bypass -File $scriptInstall a specific tagged release:
curl -fsSL https://raw.githubusercontent.com/ROCm/rocm-cli/main/install.sh | sh -s -- v0.1.0-rc.2rocm-cli nightly (20260711 · 3e9ec2b)
Automated nightly build from main at 2026-07-11 06:55 UTC.
Commit: 3e9ec2b
1 commit(s) since the previous nightly.
Install the latest nightly on Linux x86_64:
curl -fsSL https://raw.githubusercontent.com/ROCm/rocm-cli/main/install.sh | sh -s -- nightlyInstall the latest nightly on Windows x86_64 from PowerShell:
$script = "$env:TEMP\install-rocm-cli.ps1"; irm https://raw.githubusercontent.com/ROCm/rocm-cli/main/install.ps1 -OutFile $script; powershell -ExecutionPolicy Bypass -File $script nightlyv0.1.0-rc.1
feat(serve): detach from an attached serve session with Ctrl-D (#85) * feat(serve): detach from an attached serve session with Ctrl-D `rocm serve --verbose`/`--foreground` ran the engine in-process, so the only way out was Ctrl-C, which killed the model. The attached path now spawns the same detached managed child the background path uses and tails its log, so the server outlives the session: Ctrl-D detaches and leaves it running (manage it later with `rocm services`), while Ctrl-C stops it. Split the engine spawn out of start_managed_service so the attached path streams startup logs live instead of blocking on the readiness wait. Signed-off-by: Eugene Volen <Eugene.Volen@amd.com> * fix(serve): supervise and harden the attached detach path Address review on the attached serve path: - Ensure the supervisor daemon is running after spawning the attached child, so a Ctrl-D-detached server gets the same health-check, auto-recovery, record reconciliation, and dashboard metrics a background-managed server gets. - Enter raw mode before spawning the key reader thread, closing a window where a terminal Ctrl-C would kill the CLI with no detach/stop message. - Discover AppPaths once and thread it into spawn_managed_engine_child instead of rediscovering it per call. Signed-off-by: Eugene Volen <Eugene.Volen@amd.com> --------- Signed-off-by: Eugene Volen <Eugene.Volen@amd.com>