-
Notifications
You must be signed in to change notification settings - Fork 3k
feat(inference): qualify llama.cpp on generic NVIDIA GPUs #8615
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
d8c4e63
feat(inference): qualify llama.cpp on NVIDIA GPUs
ericksoa 85c23cf
docs(inference): correct llama.cpp evidence ownership
ericksoa 349dd51
test(e2e): preserve live llama.cpp bridge identity
ericksoa 0bdd808
test(e2e): narrow generic llama.cpp qualification
ericksoa 9478fc2
test(e2e): use valid llama.cpp sandbox name
ericksoa 709b526
fix(inference): match x64 readiness for llama.cpp
ericksoa 7d54b35
fix(inference): use multiarch llama.cpp tool image
ericksoa e6ed849
fix(inference): honor Docker created state
ericksoa bdb171c
fix(inference): defer runtime port proof
ericksoa 46388ef
fix(inference): bridge managed llama.cpp privately
ericksoa cc4cd9e
fix(inference): avoid bridge key-root mutation
ericksoa 7ddae8b
test(e2e): prove llama.cpp gpu residency
ericksoa 9063e20
fix(inference): revalidate selected llama.cpp preset
ericksoa 90d270f
fix(inference): preserve finalized llama.cpp key authority
ericksoa e9b7059
test(e2e): probe protected llama.cpp auth endpoint
ericksoa 850c3db
merge: resolve conflicts with main
github-actions[bot] e251392
test(e2e): run llama.cpp on exact PR head
ericksoa 0f39c32
merge: integrate current PR head
ericksoa c83fdf4
fix(e2e): bind llama.cpp PR shard identity
ericksoa bc51dda
fix(e2e): correlate llama.cpp PR evidence
ericksoa c076d0c
ci: remove full E2E PR merge gate
ericksoa 84144b4
merge(main): reconcile E2E artifact consumers
ericksoa 8ab47a3
merge: resolve conflicts with main
ericksoa 20d7558
merge: resolve conflicts with main
ericksoa e219f37
test: remove stale GPU helper imports
ericksoa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
96 changes: 96 additions & 0 deletions
96
managed-inference/presets/llama-cpp.linux-amd64-nvidia.single.nemotron-3-nano-30b-a3b.yaml
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,96 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| apiVersion: nemoclaw.nvidia.com/managed-inference/v1 | ||
| kind: ServingPreset | ||
|
|
||
| metadata: | ||
| id: llama-cpp.linux-amd64-nvidia.single.nemotron-3-nano-30b-a3b | ||
| displayName: NVIDIA Nemotron 3 Nano 30B-A3B on one Linux x86_64 NVIDIA GPU | ||
| supportState: experimental | ||
|
|
||
| spec: | ||
| selection: explicit-only | ||
| priority: 440 | ||
|
|
||
| requirements: | ||
| all: | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.platform.supported | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.docker.available | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.docker.daemon_reachable | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.docker.runtime_supported | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.docker.storage_compatible | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.gpu.nvidia_available | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.gpu.container_toolkit_available | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: capability | ||
| id: host.gpu.cdi_healthy | ||
| state: present | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: observation | ||
| id: host.os.platform | ||
| comparison: | ||
| operator: equals | ||
| value: linux | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: observation | ||
| id: host.os.architecture | ||
| comparison: | ||
| operator: equals | ||
| value: x64 | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: observation | ||
| id: host.docker.runtime | ||
| comparison: | ||
| operator: equals | ||
| value: docker | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: observation | ||
| id: host.gpu.count | ||
| comparison: | ||
| operator: at-least | ||
| value: 1 | ||
| - readiness: | ||
| scope: everyNode | ||
| kind: observation | ||
| id: host.gpu.driver_version | ||
| comparison: | ||
| operator: version-at-least | ||
| value: 580.65.06 | ||
|
|
||
| plan: | ||
| backend: install-llama-cpp | ||
| recipeRef: llama-cpp.nemotron-3-nano-30b-a3b.spark-single.v1 |
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟠 Major | ⚡ Quick win
Register the custom runner label with actionlint.
linux-amd64-gpu-rtxpro6000-latest-1is a custom label. Actionlint reports it as unknown. Add the label to the repository actionlint configuration, or use a registered runner label.🧰 Tools
🪛 actionlint (1.7.12)
[error] 1984-1984: label "linux-amd64-gpu-rtxpro6000-latest-1" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2025-vs2026", "windows-2022", "windows-11-arm", "ubuntu-slim", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "macos-latest", "macos-latest-xlarge", "macos-latest-large", "macos-26-intel", "macos-26-xlarge", "macos-26-large", "macos-26", "macos-15-intel", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xlarge", "macos-14-large", "macos-14", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file
(runner-label)
🤖 Prompt for AI Agents
Source: Linters/SAST tools