Dose Cosmos Curate run on Nvidia Spark(arm64 platform)? #168
Replies: 1 comment
|
not with the ready-made container, but yes if you build it from source — this has been the case since a few months after you posted. I dug into the actual repo (not just docs) to check this properly, and there's a specific reason you hit that error. Your timing is the actual explanationYour post is dated Mar 2, 2026. Two days later, v1.2.0 shipped with this changelog line:
(https://github.com/NVIDIA/cosmos-curator/blob/main/CHANGELOG.md#L505 — same release also added GB200 support). Before that, Two different things are both called "Cosmos Curator" — check which one you're using
So: build the image natively on the Spark instead of pulling NVIDIA's image, and it should pick up the aarch64 targets. One known gapThe What I'd trygit clone --recurse-submodules https://github.com/NVIDIA/cosmos-curator.git
cd cosmos-curator
# build natively on the Spark itself — do NOT pull the NGC image, it's x86_64-only
pixi run -e tools cosmos-curator image build \
--image-name cosmos-curator --image-tag local
# launch against your own locally-built image, not nvcr.io's
pixi run -e tools cosmos-curator local launch \
--image-name cosmos-curator --image-tag local \
-- pixi run -e default hello-worldIf this still fails, the most useful thing you can share is the exact Wider contextDGX Spark (GB10, ARM Grace-Blackwell) support has landed unevenly across the whole Cosmos family, not just Curator. NVIDIA's own docs currently list Cosmos-Reason2 as validated on DGX Spark for inference (https://docs.nvidia.com/cosmos/latest/prerequisites.html), while Cosmos-Predict2.5 users were still hitting hard aarch64 blockers (Transformer Engine / flash-attn not built for ARM) as recently as Feb 2026 (nvidia-cosmos/cosmos-predict2.5#120). Curator quietly joined the "supported at the source level" side in March — the published container just hasn't caught up. TL;DR: the CLI was right when you tried it (arm64 landed 2 days later, in v1.2.0). It's buildable from source for aarch64 as of v1.2.0+ (latest is v2.4.0) — build locally on the Spark instead of pulling NGC's x86_64-only image. One stage ( |
Uh oh!
There was an error while loading. Please reload this page.
I try to run cosmos curate on Nvidia Spark(arm 64 platform). but I encounted many problems, cli infomation show that it dosen't support linux-aarch64. So, i want to make sure that if is no possible to run cosmos curate on spart(arm64).
ps: I can successfully run cosmos curate on x86 amd64 computer with nvidia GPU 5070 (only the hello world example).
All reactions