---
格式版本: 2
标题: "Hardware-Rooted AI Security That Won’t Slow You Down | NVIDIA Technical Blog"
原文链接: "https://developer.nvidia.com/blog/hardware-rooted-ai-security-that-wont-slow-you-down/"
发布日期: "2026-07-02"
发布时间校准状态: "found"
发布时间来源: "llm:strict_original_body"
发布时间证据: "div class=post-info: Jul 02, 2026"
发布时间校准原因: "日期位于标题下方的 post-info 区域，符合文章发布时间的典型位置特征，且无其他冲突日期。"
发布时间校准置信度: "100"
发布时间候选数量: 8
发布时间严格候选数量: 2
发布时间原页读取状态: "原页面来自已抓取 HTML"
发布时间未找到原因: "候选日期无效或 LLM 未确认"
发布时间校准时间: "2026-07-20T11:49:33+08:00"
发现时间: "2026-07-20T11:40:00+08:00"
入库时间: "2026-07-20T04:02:20.860Z"
来源平台: "固定入口"
搜索渠道: "fixed_url"
搜索词: "https://developer.nvidia.com/blog/"
匹配关键词:
  - "GPU"
  - "Nvlink"
相关厂家:
  - "NVIDIA"
  - "AMD"
相关专家:
  []
内容类型: "网页"
抓取工具: "AgentKey Scrape"
清洗工具: "AgentKey Markdown + LLM 正文裁剪"
原始附件:
  []
AI优质: "否"
AI打分: 48
AI分档: "非优质"
AI质检状态: "不通过"
AI打分理由: "文章聚焦NVIDIA机密计算(CC)在AI推理中的安全与性能优化，虽提及HGX B200/B300及NVLink加密，但核心是软件/安全架构与推理基准测试，未涉及超节点/AI Rack/机柜级系统架构、供电、散热、高速互连拓扑或量产部署信…"
AI质检模型: "qwen3.6-plus"
AI质检时间: "2026-07-20T12:02:20+08:00"
AI主题相关性: 8
AI来源权威性: 14
AI新颖性: 12
AI技术细节: 8
AI商业部署信号: 2
AI完整性: 4
图片摘要:
  - "✗ ./assets/img-36d507ae.png | decorative | 装饰性图片，无具体技术信息"
  - "★ ./assets/img-099eb45e.webp | diagram | Blackwell架构下的认证流程图，展示GPU、CVM、NRAS及RIM Provider间的交互步骤，验证TEE环境。"
  - "✗ ./assets/img-bab70b95.webp | ad | GTC Berlin会议注册广告，与正文技术内容无关"
  - "✗ ./assets/img-9d3a9443.webp | ad | SIGGRAPH 2026会议宣传广告，与正文技术内容无关"
采集批次: "2026年7月20日11点39分58秒"
采集批次ID: "20260720-113958-114"
去重键: "https://developer.nvidia.com/blog/hardware-rooted-ai-security-that-wont-slow-you-down"
---

AI has transformed how organizations operate, driving unprecedented levels of productivity and innovation. However, AI adoption can be impeded by concerns surrounding data privacy, sovereignty and how to secure data while it is in use, or during inference and engagement with AI models. NVIDIA Confidential Computing (CC) was engineered to be a secure and performant solution for the era of agentic AI to scale any model securely.

CC enables the protection of enterprise data and proprietary model weights and the model itself during active inference. In this post, we will provide an overview of CC and demonstrate benchmarks that show its inference performance is nearly identical (up to 98%) to solutions that don’t enable CC security.

## Data, code, and model integrity

CC provides a security layer that spans silicon, interconnect, and system software. Here’s how it works:

Figure 1. Confidential Computing provides data and code integrity and confidentiality

### Hardware root of trust

NVIDIA Blackwell GPUs, including the NVIDIA RTX PRO 6000, HGX B200, and HGX B300, are engineered with CC embedded in the hardware. The HGX B200 and HGX B300 GPUs support confidential computing across multiple GPUs (up to 8) with NVIDIA NVLink encryption. At the silicon level, the GPU maintains a private signing key that is fused at the time of manufacturing and never exposed to software, firmware, or the host system. This key is the foundation of the attestation chain.

### Attestation: Verification before execution

Before a confidential workload receives any secrets, it undergoes remote attestation. The NVIDIA Remote Attestation Service (NRAS) verifies a signed evidence bundle—the GPU’s hardware report combined with CPU TEE measurements (AMD SEV-SNP or Intel TDX)—against a known-good reference integrity manifest (RIM).

Once the Confidential VM (CVM) is in a verified, unmodified state, secrets such as model decryption keys can be deployed into the CVM. The attestation handshake is typically a one-time startup event. Once the workload is running, attestation does not add latency to individual inference requests.

![Diagram showing the attestation process, where the NVIDIA Remote Attestation Service (NRAS) verifies the hardware report and CPU TEE measurements against a reference integrity manifest to validate the Trusted Execution Environment before secrets are deployed.](./assets/img-099eb45e.webp)

Diagram showing the attestation process, where the NVIDIA Remote Attestation Service (NRAS) verifies the hardware report and CPU TEE measurements against a reference integrity manifest to validate the Trusted Execution Environment before secrets are deployed.

*Figure 2. Attestation services remotely validate the identity, configuration, and integrity of Trusted Execution Environments and issue cryptographic proof*

## Optimizing AI inference performance in Confidential Computing

CC changes to AI inference performance on Blackwell GPUs can come from two areas:

1. **Secure work submission latency:** For inference, secure work submission latency is often the larger factor and due to the added overhead from encryption and kernel launches, smaller units of work are more affected. Increasing the amount of work performed per GPU work launch reduces the impact of the secure launch overhead.
2. **Reduced host-to-device CPU-to-GPU bandwidth:** If a workload depends heavily on transferring inputs to the GPU, performance will depend on whether the required bandwidth to keep the GPU fully utilized exceeds the encrypted transfer bandwidth available in CC mode.

Several innovations optimize inference performance with CC including:

- **CC-safe autotuner timing:** FlashInfer replaces event timers in CC mode with the GPU global timer register, allowing autotuners to accurately compare kernel candidates and select the fastest implementation for each shape.
- **Async D2H copy worker:** SGLang moves per-step token readback off the scheduler’s critical path. This helps restore compute/copy overlap because CC can otherwise make many host-to-device and device-to-host copies effectively synchronous during cudaMemcpyAsync.
- **Piecewise CUDA graph support:** SGLang adds CUDA graph replay for prefill and mixed batches, reducing kernel launch overhead that is amplified in CC mode.

NVIDIA continues to work with upstream communities for inference frameworks to ensure these frameworks are optimized for performance.

We measured the inference performance of CC across different key metrics. Below are the details on the test setup and measurements.

## Benchmark results

*Across all workload configurations tested, enabling CC mode produced minimal throughput and time per output token overhead during steady-state inference.*

The following table summarizes CC throughput, TTFT, TPOT overhead on Blackwell Ultra (HGX B300) for model Qwen/Qwen3.5-397B-A17B-FP8

### Relative Performance of Confidential Computing

<table><tbody><tr><td rowspan="3"><strong>Concurrency</strong></td><td colspan="2"><strong>ISL/OSL = 1024 / 1024</strong></td><td colspan="2"><strong>ISL/OSL = 8192 / 1024</strong></td></tr><tr><td><strong>Throughput/GPU (tok/s)</strong></td><td><strong>Median TPOT (ms)</strong></td><td><strong>Throughput/GPU (tok/s)</strong></td><td><strong>Median TPOT (ms)</strong></td></tr><tr><td><strong>Δ% vs OFF</strong></td><td><strong>Δ% vs OFF</strong></td><td><strong>Δ% vs OFF</strong></td><td><strong>Δ% vs OFF</strong></td></tr><tr><td><strong>4</strong></td><td>-2.0%</td><td>-1.6%</td><td>-3.5%</td><td>-3.6%</td></tr><tr><td><strong>8</strong></td><td>-2.6%</td><td>-2.4%</td><td>-2.8%</td><td>-2.9%</td></tr><tr><td><strong>16</strong></td><td>-5.3%</td><td>-4.9%</td><td>-2.8%</td><td>-3.0%</td></tr><tr><td><strong>32</strong></td><td>-6.3%</td><td>-7.8%</td><td>-1.0%</td><td>-0.9%</td></tr><tr><td><strong>64</strong></td><td>-6.2%</td><td>-6.8%</td><td>-2.3%</td><td>-2.4%</td></tr><tr><td><strong>128</strong></td><td>-7.5%</td><td>-8.1%</td><td>-3.5%</td><td>-3.5%</td></tr><tr><td><strong>256</strong></td><td>-4.6%</td><td>-4.1%</td><td>-3.6%</td><td>-3.7%</td></tr></tbody></table>

*Table 1. Relative performance impact of enabling NVIDIA Confidential Computing*

## Test Setup

**Benchmark:** Qwen 3.5 397B-A17B model at FP8 precision  
**Environment:** Virtual Machine with GPU passthrough  
**Baseline:** Confidential Computing Off  
**Experiment:** Confidential Computing On

All other variables held constant.

### Hardware Configurations

HGX B300 with Blackwell Ultra.

### Software Stack

| **Component** | **Version / Detail** |
| --- | --- |
| **Platform** | Intel TDX |
| **Host OS** | Ubuntu 25.10 |
| **Host Kernel** | 6.17.0-20-generic |
| **Guest OS** | Ubuntu 24.04.4 LTS |
| **Guest Kernel** | 6.8.0-124-generic |
| **Guest vCPUs** | 256 |
| **Guest NUMA** | 2 nodes |
| **NVIDIA Driver** | 595.71.05 |
| **VBIOS** | FW 1.4.x \[97.10.64.00.0C\] |
| **GPU Power Limit** | 1100.00 |
| **CUDA** | 13.2 |
| **SGlang** | [docker.io/lmsysorg/sglang:v0.5.12-cu130](http://docker.io/lmsysorg/sglang:v0.5.12-cu130) PRs: [28251](https://github.com/sgl-project/sglang/pull/28251) (SGLang) and [3638](https://github.com/flashinfer-ai/flashinfer/pull/3638) (FlashInfer) |
| **NCCL** | v2.28.9-1 |
| **OpenSSL** | 3.6.0 |
| **Orchestration** | Docker Container + NVIDIA Container Toolkit |

*Table 2. Software configuration for test setup*

Note: Please follow the CPU power and vCPU pinning configuration described in this [document.](https://docs.nvidia.com/cc-deployment-guide-tdx.pdf)

### Workload Parameters

Each configuration was tested across a range of conditions representative of real enterprise inference workloads:

**Input/output token lengths:** 8192/1024, 1024/1024  
**Batch sizes:** 4, 8, 16, 32, 64, 128 and 256 concurrent requests.  
**Inference framework (Mode):** SGLang (Server)  
**Baseline:** Without –enable-symm-mem

### Metrics Collected

**Output Throughput per GPU (tokens/sec/gpu)**  
**Median Time to First Token (TTFT)** — latency from request submission to first token generated, in ms  
**Median Time Per Output Token (TPOT)** — per-token generation latency in steady-state streaming, in ms

## Path forward

Hardware-level security with CC protects sensitive AI workloads while preserving the performance needed for production AI workloads.

CC provides a stronger security foundation for production inference workloads with minimal performance overheads. In our evaluation using Qwen 3.5 on SGLang, we observed this across a sweep of concurrency levels, input sequence lengths, and output sequence lengths, proving that organizations can secure their AI workloads and data, and stay compliant to regulation without compromising on performance.

Join NVIDIA and our partners to secure your AI workloads with CC on Blackwell by accessing the resources below.

## Resources

[NVIDIA Confidential Computing Documentation](http://developer.nvidia.com/confidential-computing)  
[NVIDIA Blackwell Architecture Whitepaper](http://resources.nvidia.com/en-us-blackwell-architecture)  
[NVIDIA GPU Operator and Container Toolkit](http://docs.nvidia.com/datacenter/cloud-native/)  
[NVIDIA Remote Attestation Service (NRAS)](http://developer.nvidia.com/docs/security/attestation-sdk)  
[NIST SP 800-207 Zero Trust Architecture](http://csrc.nist.gov/publications/detail/sp/800-207/final)  
[HIPAA Security Rule (HHS)](http://hhs.gov/hipaa/for-professionals/security)  
[GDPR Article 32 — Security of Processing](http://gdpr.eu/article-32-security-of-processing)

![Diagram showing the attestation process, where the NVIDIA Remote Attestation Service (NRAS) verifies the hardware report and CPU TEE measurements against a reference integrity manifest to validate the Trusted Execution Environment before secrets are deployed.](./assets/img-099eb45e.webp)

- ![图片](./assets/img-bab70b95.webp)

- ![图片](./assets/img-9d3a9443.webp)
