v0.32.2-rc0: CUDA v12 の Linux 向けに CC 10.0 サポートを追加v0.32.2-rc0: cuda: add CC 10.0 for linux in CUDA v12 (#17025)
匿名の公開いいねです。記事の保存・お気に入りではなく、Featured、Top 3、重要度、掲載順位には影響しません。仕組みとプライバシーAnonymous public likes are reactions, not saved articles or bookmarks. They do not affect Featured, Top 3, importance, or listing order.How it works and privacy
Ollama v0.32.2-rc0 では、Linux 環境の CUDA v12 に Compute Capability 10.0 対応が追加され、最新世代の NVIDIA GPU でのローカル LLM 実行が可能になります。
Ollama v0.32.2-rc0 adds Compute Capability 10.0 support for Linux under CUDA v12, enabling local LLM inference on the latest generation of NVIDIA GPUs.
要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.
Ollama の開発チームは、ローカルで大規模言語モデル (LLM) を動かすためのツール「Ollama」のリリース候補版 v0.32.2-rc0 を公開した。今回の目玉は、Linux 環境の CUDA v12 において Compute Capability (CC) 10.0 に対応した点で、最新世代の NVIDIA GPU 上でのローカル推論が可能になる。
Compute Capability は、NVIDIA が GPU アーキテクチャの機能セットを識別するために付与するバージョン番号だ。CUDA 向けのカーネルは対象 GPU の CC に合わせてコンパイルされる必要があり、実行環境に該当する CC 用のバイナリが含まれていないと、GPU アクセラレーションが効かず CPU にフォールバックしたり、正常に動作しなかったりすることがある。CC 10.0 は Blackwell 世代のデータセンター向け GPU に対応するとみられ、今回の追加でこうした新しいハードウェアでも GPU を活用した推論が行えるようになる。
Ollama は内部で llama.cpp / GGML を基盤とし、GGUF 形式の量子化済みモデルを手軽に取得・実行できることから、個人開発者や研究者の間で広く使われている。GPU を使う場合は事前にビルドされた CUDA バイナリを同梱しており、対応する CC が増えるほど幅広い環境で恩恵を受けられる仕組みだ。
末尾の「rc0」はリリース候補 (Release Candidate) を示し、正式版の前段階として不具合検証を目的に配布される。新しい GPU アーキテクチャへの対応は CUDA Toolkit のバージョンやドライバとの組み合わせに依存するため、実環境での動作確認が重要になる。安定版に向けては追加の修正が入る可能性がある。
ローカル LLM 実行の分野では、LM Studio や llama.cpp 単体、あるいは推論最適化に特化した vLLM、TensorRT-LLM など複数の選択肢が存在する。その中で Ollama は導入の手軽さを強みとしており、新世代 GPU への迅速な追随は、最新ハードウェアを導入したユーザーにとって実用上の意味が大きい。
Blackwell 世代の GPU は高いメモリ帯域と演算性能を備えるとされ、より大規模なモデルや長いコンテキストの処理で有利になる可能性がある。ただし今回の対応は Linux かつ CUDA v12 の組み合わせが前提であり、Windows や他の環境への展開状況については、今後のリリースノートで確認する必要がある。
Ollama has published v0.32.2-rc0, a release candidate that adds Compute Capability 10.0 (CC 10.0) support for CUDA v12 on Linux. The change matters for anyone running local large language models on the newest NVIDIA hardware, because without a matching compiled kernel, those GPUs may fall back to CPU execution or fail to load models efficiently.
Compute Capability is NVIDIA's versioning scheme that identifies the feature set and instruction support of a given GPU architecture. Each generation carries a number—for example, CC 8.x maps to Ampere and CC 9.0 to Hopper—and software that targets CUDA typically ships precompiled kernels for a specific list of these values. CC 10.0 corresponds to the latest generation of NVIDIA GPUs based on the Blackwell data-center architecture. By adding this target, Ollama can build and dispatch optimized code paths for those chips rather than relying on forward-compatible fallbacks, which are not always available or performant.
Ollama is an open-source tool that packages and runs LLMs locally, wrapping the widely used llama.cpp inference engine behind a simple command-line interface and HTTP API. It handles model downloading, quantization formats such as GGUF, and hardware acceleration across CUDA, ROCm, Metal, and CPU backends. Because the project distributes prebuilt binaries, the set of Compute Capabilities baked into its CUDA builds directly determines which GPUs receive native acceleration out of the box. Extending that list to CC 10.0 is therefore a prerequisite for smooth support of Blackwell-class accelerators on Linux.
The "-rc0" suffix indicates this is the first release candidate for v0.32.2, not a final stable build. Release candidates are intended for testing and validation before a general release; users who lack the relevant hardware or who need production stability may prefer to wait for the tagged stable version. The scoping of the change to CUDA v12 reflects the fact that newer architectures generally require a recent CUDA toolkit; older CUDA 11 builds do not include the compiler support needed to target CC 10.0.
For context, GPU acceleration is central to practical local inference. Model weights and the key-value cache consume large amounts of memory bandwidth, and modern data-center GPUs offer very high memory capacity and throughput that can run larger models or serve more concurrent requests than consumer cards. That said, the majority of Ollama users run consumer GeForce and workstation RTX cards; the consumer Blackwell line, sold as the RTX 50 series, reportedly uses a different Compute Capability and is handled by separate build targets. This particular change appears aimed primarily at the data-center Blackwell parts.
The update also fits a broader industry pattern. Runtime and framework maintainers, including PyTorch, TensorRT-LLM, vLLM, and llama.cpp itself, have been progressively adding Blackwell support as the hardware reaches customers, and each layer of the stack must be updated in turn. Ollama sits near the top of that stack, so it benefits from upstream CUDA and llama.cpp work while still needing its own build configuration to expose new architectures. Keeping the compiled kernel list current is routine but necessary maintenance as NVIDIA's lineup evolves.
Practically, the addition means Linux users with CC 10.0 GPUs should be able to install this release candidate and see native CUDA acceleration without manual recompilation. Those on Windows, or on other GPU vendors, are unaffected by this specific note. As with any pre-release, behavior may change before the stable v0.32.2 ships, and anyone deploying on new silicon is advised to verify driver versions, confirm the installed CUDA runtime, and benchmark against their expected workloads. Users can typically report issues through the project's GitHub repository, which is also where release notes and binaries are published.
Overall, v0.32.2-rc0 is an incremental but meaningful step that broadens Ollama's hardware coverage. It does not introduce new user-facing features so much as ensure that the latest NVIDIA accelerators are recognized and used efficiently, keeping the tool aligned with the current generation of GPU hardware.
本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (github.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (github.com).




