install.sh: detect platform, install the Linux/arm64 CUDA bundle - #33
Open
prabod wants to merge 1 commit into
Open
install.sh: detect platform, install the Linux/arm64 CUDA bundle#33prabod wants to merge 1 commit into
prabod wants to merge 1 commit into
Conversation
The installer was hard-locked to macOS/Apple-Silicon and errored out on Linux, so CUDA (GB10) users had no `curl | sh` path. Detect the platform and pick the matching prebuilt bundle: macOS/arm64 → basert-engine-macos-arm64, Linux/arm64 with an NVIDIA GPU → basert-engine-linux-arm64-cuda (new; published by the baseRT release workflow). The installed CLI is built for that backend, so `basert pull` resolves the matching catalog variant automatically. Also: clean up libbaseRT.so on upgrade (not just the macOS .dylib), and point the "try it" example at the hosted catalog id (basecompute/Qwen3-0.6B) instead of a raw HF repo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The installer was hard-locked to macOS/Apple-Silicon (
err "BaseRT requires macOS"), so CUDA/GB10 users had nocurl -LsSf … | shpath.Changes
Darwin/arm64→basert-engine-macos-arm64(unchanged)Linux/aarch64+ an NVIDIA GPU/driver →basert-engine-linux-arm64-cuda(new, published by the baseRT release workflow)libbaseRT.so*on upgrade (not just the macOS.dylib).basecompute/Qwen3-0.6B(resolves through the hub, backend-aware) instead of a rawQwen/…HF repo.The installed CLI's
client_backend()resolves tocudaon the Linux build, sobasert pullfetches the CUDA catalog variant automatically.