572 lines
35 KiB
HTML
572 lines
35 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN" data-theme="night">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>华为昇腾超节点 - 深度行研报告</title>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.10.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<script src="https://cdn.tailwindcss.com/3.4.3"></script>
|
||
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
||
<script src="https://cdn.jsdelivr.net/npm/echarts@5.5.0/dist/echarts.min.js"></script>
|
||
<style>
|
||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
|
||
|
||
body {
|
||
font-family: 'Inter', 'Noto Sans SC', sans-serif;
|
||
background-color: #020617;
|
||
background-image:
|
||
radial-gradient(circle at 10% 10%, rgba(124, 58, 237, 0.2) 0%, transparent 30%),
|
||
radial-gradient(circle at 80% 90%, rgba(0, 242, 234, 0.15) 0%, transparent 40%),
|
||
radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 25%);
|
||
background-attachment: fixed;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(17, 24, 39, 0.6);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
border-color: rgba(0, 242, 234, 0.5);
|
||
box-shadow: 0 0 30px rgba(0, 242, 234, 0.1);
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(12, 1fr);
|
||
gap: 1.5rem;
|
||
}
|
||
|
||
.grid-item {
|
||
border-radius: 1.5rem;
|
||
padding: 2rem;
|
||
box-sizing: border-box;
|
||
}
|
||
|
||
.col-span-12 { grid-column: span 12; }
|
||
.col-span-8 { grid-column: span 8; }
|
||
.col-span-6 { grid-column: span 6; }
|
||
.col-span-4 { grid-column: span 4; }
|
||
|
||
.timeline {
|
||
position: relative;
|
||
padding-left: 2rem;
|
||
}
|
||
.timeline::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
bottom: 0;
|
||
width: 2px;
|
||
background: linear-gradient(to bottom, rgba(0, 242, 234, 0.8), rgba(124, 58, 237, 0.8));
|
||
}
|
||
.timeline-item {
|
||
position: relative;
|
||
margin-bottom: 2rem;
|
||
}
|
||
.timeline-item::before {
|
||
content: '';
|
||
position: absolute;
|
||
left: -2.5rem;
|
||
top: 0.25rem;
|
||
width: 1.25rem;
|
||
height: 1.25rem;
|
||
border-radius: 50%;
|
||
background-color: #020617;
|
||
border: 3px solid #00f2ea;
|
||
box-shadow: 0 0 10px #00f2ea;
|
||
}
|
||
.timeline-item h4 {
|
||
color: #00f2ea;
|
||
}
|
||
|
||
.highlight-text {
|
||
color: #2dd4bf;
|
||
}
|
||
|
||
.danger-text {
|
||
color: #f43f5e;
|
||
}
|
||
|
||
.table thead th {
|
||
background-color: rgba(30, 41, 59, 0.8);
|
||
color: #9ca3af;
|
||
font-weight: 600;
|
||
}
|
||
.table tbody tr {
|
||
background-color: transparent;
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
.table tbody tr:last-child {
|
||
border-bottom: none;
|
||
}
|
||
.table tbody tr:hover {
|
||
background-color: rgba(30, 41, 59, 0.5);
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="text-slate-300 min-h-screen">
|
||
<div class="container mx-auto p-4 md:p-8">
|
||
|
||
<!-- Header -->
|
||
<header class="text-center py-12">
|
||
<div class="inline-block p-1 rounded-full bg-gradient-to-r from-teal-400 via-violet-500 to-sky-400">
|
||
<div class="bg-slate-900 rounded-full px-4 py-2">
|
||
<span class="text-slate-400 text-sm">价小前投研 · AI Generated Insight</span>
|
||
</div>
|
||
</div>
|
||
<h1 class="text-5xl md:text-7xl font-bold mt-6 bg-clip-text text-transparent bg-gradient-to-br from-white to-slate-400">
|
||
华为昇腾超节点
|
||
</h1>
|
||
<p class="text-slate-400 mt-4 text-lg max-w-3xl mx-auto">
|
||
一份关于华为在AI算力领域以系统工程破局、构建自主可控生态的深度行研报告。
|
||
</p>
|
||
</header>
|
||
|
||
<!-- Main Content Grid -->
|
||
<main class="space-y-6">
|
||
|
||
<!-- Core Thesis -->
|
||
<div class="grid-item col-span-12 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">核心观点摘要</h2>
|
||
<p class="text-slate-300 text-base leading-relaxed">
|
||
华为昇腾超节点是在先进工艺受限背景下,华为“以系统工程换取单点性能”战略的集中体现,其核心驱动力源于<strong class="highlight-text">国产算力自主可控的迫切政策需求</strong>与<strong class="highlight-text">AI大模型对集群性能的极致追求</strong>。该概念目前正从“主题叙事”向“订单兑现”的早期基本面驱动阶段过渡,其长期潜力在于构建一个独立于CUDA的、以“灵衢”协议为核心的开放硬件生态,而短期价值则集中体现在为产业链上游<strong class="highlight-text">高速互联</strong>和<strong class="highlight-text">液冷散热</strong>等确定性增量环节带来订单。
|
||
</p>
|
||
</div>
|
||
|
||
<div class="bento-grid">
|
||
<!-- Concept Events -->
|
||
<div class="grid-item col-span-12 md:col-span-4 glass-card">
|
||
<h2 class="text-2xl font-bold mb-6 text-teal-300">概念发展脉络</h2>
|
||
<div class="timeline">
|
||
<div class="timeline-item">
|
||
<h4 class="font-bold text-lg">技术奠基期</h4>
|
||
<p class="text-sm text-slate-400">2024年及以前</p>
|
||
<p class="mt-1 text-sm">昇腾910B/910C芯片为超节点架构打下万卡互联基础。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<h4 class="font-bold text-lg">产品正式发布</h4>
|
||
<p class="text-sm text-slate-400">2025年 Q2</p>
|
||
<p class="mt-1 text-sm">CloudMatrix 384超节点在华为开发者峰会正式推出。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<h4 class="font-bold text-lg">商业化与生态适配</h4>
|
||
<p class="text-sm text-slate-400">2025年 Q2-Q3</p>
|
||
<p class="mt-1 text-sm">电信韶关节点商用,昇腾AI云服务上线,DeepSeek、商汤等完成适配。</p>
|
||
</div>
|
||
<div class="timeline-item">
|
||
<h4 class="font-bold text-lg">市场催化与技术深化</h4>
|
||
<p class="text-sm text-slate-400">2025年 Q3-Q4</p>
|
||
<p class="mt-1 text-sm">WAIC展出真机,全联接大会上正式发布并开源“灵衢(UB Mesh)”架构。</p>
|
||
</div>
|
||
<div class="timeline-item pb-0">
|
||
<h4 class="font-bold text-lg">未来预期</h4>
|
||
<p class="text-sm text-slate-400">2026-2027年</p>
|
||
<p class="mt-1 text-sm">预计2026 Q4小批量部署,2027年进入行业大规模渗透。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Core Logic -->
|
||
<div class="grid-item col-span-12 md:col-span-8 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">核心逻辑与市场认知分析</h2>
|
||
<div class="space-y-4 text-base">
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg">核心驱动力</h3>
|
||
<ul class="list-disc list-inside space-y-2 mt-2 text-slate-300 pl-2">
|
||
<li><strong class="highlight-text">技术约束下的必然选择 (内因)</strong>:路演明确指出,超节点是“NVLink级高速互联芯片缺失”的替代方案。通过高速总线(灵衢 UB Mesh)将大量国产NPU紧密耦合,以集群协同效率弥补单卡性能不足。</li>
|
||
<li><strong class="highlight-text">政策驱动的国产化浪潮 (外因)</strong>:建立自主可控的AI算力基础设施已成国家战略。昇腾超节点成为政府、国企及关键行业智算中心建设的首选,中国移动招标中昇腾占比近100%是最佳例证。</li>
|
||
<li><strong class="highlight-text">大模型时代的技术演进 (需因)</strong>:超节点架构通过全对等互联和纳秒级时延,解决传统以太网瓶颈,提升有效算力利用率(MFU),满足万卡集群训练需求。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg">市场情绪与预期差</h3>
|
||
<p class="mt-2 text-slate-300">当前市场对概念抱有极高热情,股价联动效应强。然而,关键预期差存在:</p>
|
||
<ul class="list-disc list-inside space-y-2 mt-2 text-slate-300 pl-2">
|
||
<li><strong class="danger-text">应用场景预期差</strong>:市场普遍认为可全面替代英伟达,但路演数据显示,短期内<strong class="danger-text">以推理为主,训练横向扩展仍受限</strong>。</li>
|
||
<li><strong class="danger-text">部署时间预期差</strong>:市场情绪认为即将大规模出货,但路演给出的时间表是“<strong class="danger-text">国内预计2026 Q4小批量,2027年大规模渗透</strong>”,短期业绩兑现可能慢于预期。</li>
|
||
<li><strong class="danger-text">价值链认知预期差</strong>:市场多关注硬件,但华为长期战略是通过<strong class="danger-text">开源“灵衢”协议</strong>和软件栈构建可与CUDA竞争的开放生态,其颠覆性可能被低估。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Catalysts & Roadmap -->
|
||
<div class="bento-grid">
|
||
<div class="grid-item col-span-12 md:col-span-6 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">关键催化剂与未来发展路径</h2>
|
||
<div class="space-y-4">
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg">近期催化剂 (3-6个月)</h3>
|
||
<ul class="list-disc list-inside space-y-1 mt-2">
|
||
<li><strong>Atlas 950 SuperPoD 上市 (预计2025 Q4)</strong>: 支持8192卡的大规模超节点,性能指标和首批客户将引爆行情。</li>
|
||
<li><strong>CANN 4.0 版本发布 (预计2025-11-21)</strong>: 旨在将NPU利用率从40%提升至70%,极大增强软件吸引力。</li>
|
||
<li><strong>标杆项目交付与数据披露</strong>: 平潭、天津等大型智算中心的实质性交付和运营数据公布。</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg">长期发展路径</h3>
|
||
<ul class="list-disc list-inside space-y-1 mt-2">
|
||
<li><strong>硬件迭代 (算力翻倍)</strong>: 从昇腾950PR到970,实现“一年一代翻倍”的算力增长。</li>
|
||
<li><strong>集群规模扩张 (从Pod到Cluster)</strong>: 从384卡向8192卡、15488卡,最终实现百万卡集群愿景。</li>
|
||
<li><strong>生态构建 (从封闭到开放)</strong>: 通过开源“灵衢”协议和CANN软件栈,构建可与CUDA抗衡的国产AI生态。</li>
|
||
<li><strong>领域拓展 (从智算到通算)</strong>: 推出TaiShan 950 SuperNode,进入更广阔的通用计算市场。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="grid-item col-span-12 md:col-span-6 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">产品与技术路线图</h2>
|
||
<div id="roadmapChart" class="w-full h-96"></div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Industry Chain & Risks -->
|
||
<div class="bento-grid">
|
||
<div class="grid-item col-span-12 md:col-span-8 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">产业链深度剖析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg border-l-4 border-teal-400 pl-2">上游:核心增量零部件</h3>
|
||
<ul class="mt-2 space-y-1 text-sm">
|
||
<li><strong>高速互联:</strong> <span class="badge badge-primary badge-outline">华丰科技</span> (背板连接器), <span class="badge badge-primary badge-outline">意华股份</span> (I/O连接器)</li>
|
||
<li><strong>散热:</strong> <span class="badge badge-secondary badge-outline">川润股份</span> (液冷独供), 英维克</li>
|
||
<li><strong>PCB/基板:</strong> <span class="badge badge-accent badge-outline">兴森科技</span> (FC-BGA)</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg border-l-4 border-violet-400 pl-2">中游:系统集成与服务</h3>
|
||
<ul class="mt-2 space-y-1 text-sm">
|
||
<li><strong>整机集成:</strong> <span class="badge badge-primary badge-outline">烽火通信</span> (首批伙伴), <span class="badge badge-primary badge-outline">恒为科技</span> (智算一体机)</li>
|
||
<li><strong>软件适配:</strong> <span class="badge badge-secondary badge-outline">东华软件</span>, <span class="badge badge-accent badge-outline">直真科技</span> (算力调度)</li>
|
||
</ul>
|
||
</div>
|
||
<div>
|
||
<h3 class="font-semibold text-slate-100 text-lg border-l-4 border-sky-400 pl-2">下游:算力需求方</h3>
|
||
<ul class="mt-2 space-y-1 text-sm">
|
||
<li><strong>云服务商:</strong> 华为云</li>
|
||
<li><strong>运营商:</strong> 中国电信, 中国移动</li>
|
||
<li><strong>AI企业:</strong> DeepSeek, 商汤科技</li>
|
||
<li><strong>智算中心:</strong> 各地政府投建节点</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="mt-6">
|
||
<h3 class="font-semibold text-slate-100 text-lg">核心玩家对比</h3>
|
||
<p class="mt-2 text-slate-300">
|
||
<strong class="highlight-text">领导者 (逻辑最纯粹):</strong>
|
||
<br>
|
||
- <strong class="text-white">华丰科技 (688629):</strong> 昇腾服务器高速背板连接器一供,份额60%+。超节点的核心是高速互联,带宽升级带来量价齐升,逻辑最纯粹。
|
||
<br>
|
||
- <strong class="text-white">川润股份 (002272):</strong> 昇腾384超节点液冷独家供应商。液冷是“强制标配”,需求刚性,独家地位赋予强议价能力。
|
||
</p>
|
||
<p class="mt-2 text-slate-300">
|
||
<strong class="highlight-text">追赶者 (弹性较大):</strong>
|
||
<br>
|
||
- <strong class="text-white">意华股份 (002897):</strong> 华为400G高速I/O连接器主供,份额70%,深度绑定。
|
||
<br>
|
||
- <strong class="text-white">烽火通信:</strong> 首批解决方案伙伴,从零部件向价值量更高的系统集成商跃升,想象空间大。
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<div class="grid-item col-span-12 md:col-span-4 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-rose-400">潜在风险与挑战</h2>
|
||
<ul class="space-y-3 text-base">
|
||
<li>
|
||
<strong class="text-rose-300">技术风险:</strong>
|
||
<p class="text-sm">CUDA生态向"MindSpore+"迁移壁垒高,开发者生态是最大挑战。同时面临英伟达产品快速迭代的性能追赶压力。</p>
|
||
</li>
|
||
<li>
|
||
<strong class="text-rose-300">商业化风险:</strong>
|
||
<p class="text-sm">超节点方案初期投入巨大,TCO竞争力待验证。半导体制造受限可能影响昇腾芯片的扩产节奏,形成产能瓶颈。</p>
|
||
</li>
|
||
<li>
|
||
<strong class="text-rose-300">信息交叉验证风险:</strong>
|
||
<p class="text-sm"><strong class="danger-text">最显著矛盾点</strong>在于,研报普遍描绘了宏大的训练应用前景,而路演数据指出短期以推理为主,大规模落地要等到2026年底后。投资者需警惕预期差。</p>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Raw Data Summary (Collapsible) -->
|
||
<div class="grid-item col-span-12 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">原始数据摘要</h2>
|
||
<div class="space-y-2">
|
||
<div class="collapse collapse-plus bg-slate-800/50 border border-slate-700">
|
||
<input type="radio" name="data-accordion" checked="checked" />
|
||
<div class="collapse-title text-xl font-medium text-slate-200">
|
||
新闻数据精炼
|
||
</div>
|
||
<div class="collapse-content text-slate-300">
|
||
<ul class="list-disc list-inside space-y-2 p-4 text-sm">
|
||
<li><strong>核心发布:</strong> 2025-05-25,华为在昇腾AI开发者峰会正式推出昇腾超节点技术,由12个计算柜+4个总线柜构成,实现业界最大规模的384卡高速总线互联。</li>
|
||
<li><strong>性能指标:</strong> 总算力300Pflops,解码吞吐2300+ Tokens/s,计算效率超H100。万卡集群线性度>95%,MFU达55%。</li>
|
||
<li><strong>产品路线图:</strong> 当前主力为Atlas 900 A3 SuperPoD,未来将推出8192卡的Atlas 950和15488卡的Atlas 960,远期可达百万卡级别。</li>
|
||
<li><strong>商业化落地:</strong> 全球首个商用节点在中国电信韶关上线 (2025-04-26),华为云芜湖数据中心规模上线,已累计部署300+套,服务20+客户。</li>
|
||
<li><strong>关键事件:</strong> 2025 WAIC首次展出真机,2025全联接大会发布并开源“灵衢 (UB Mesh)”架构。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-slate-800/50 border border-slate-700">
|
||
<input type="radio" name="data-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-slate-200">
|
||
路演数据洞察
|
||
</div>
|
||
<div class="collapse-content text-slate-300">
|
||
<ul class="list-disc list-inside space-y-2 p-4 text-sm">
|
||
<li><strong>战略定位:</strong> 超节点本质是 <strong class="danger-text">NVLink 缺位的替代方案</strong>,通过“超节点+高速互联”实现整体性能反超。</li>
|
||
<li><strong>技术细节:</strong> 采用铜线+光模块互联,全以太+液冷成为标配。需具备芯片、网络、整机、软件、散热等综合能力,门槛极高。</li>
|
||
<li><strong>应用场景与局限:</strong> <strong class="danger-text">率先落地推理,训练横向扩展仍受限</strong>。因互联带宽仍低于NVLink,短期以推理为主。</li>
|
||
<li><strong>市场节奏:</strong> 国内预计 <strong class="danger-text">2026 Q4 小批量,2027 年行业大规模渗透</strong>。超节点整机柜成为CSP下一轮资本开支主线。</li>
|
||
<li><strong>产业链价值:</strong> 超节点形态带动单机价值量3-5倍提升。核心供应商包括烽火通信(整机)、华丰(铜连接)、英维克(液冷)。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div class="collapse collapse-plus bg-slate-800/50 border border-slate-700">
|
||
<input type="radio" name="data-accordion" />
|
||
<div class="collapse-title text-xl font-medium text-slate-200">
|
||
研报数据精华
|
||
</div>
|
||
<div class="collapse-content text-slate-300">
|
||
<ul class="list-disc list-inside space-y-2 p-4 text-sm">
|
||
<li><strong>核心架构:</strong> 采用“总线级互联”与“平等协同”机制,通过“灵衢 (Lingqu / UnifiedBus)”协议实现万卡如一。</li>
|
||
<li><strong>软件生态:</strong> CANN软件栈全栈开源,MindSpore框架全面支持主流大模型,昇腾AI云服务提供全栈算力服务。</li>
|
||
<li><strong>未来规划:</strong> 明确了从昇腾950PR到970的芯片迭代,以及从Atlas 950 SuperCluster (8192卡)到960 (15488卡)的集群规划。</li>
|
||
<li><strong>产业影响:</strong> 超节点正成为AI基建新常态,带动光通信、液冷温控、整机合作伙伴(烽火、华鲲振宇等)全产业链发展。</li>
|
||
<li><strong>核心挑战:</strong> 生态成熟度是最大挑战,CUDA生态迁移需时日,同时面临产能瓶颈与国际竞争压力。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Conclusion & Stock Table -->
|
||
<div class="grid-item col-span-12 glass-card">
|
||
<h2 class="text-2xl font-bold mb-4 text-teal-300">结论与相关个股动态</h2>
|
||
<p class="mb-6 text-slate-300">
|
||
华为昇腾超节点概念正处在从主题炒作向早期基本面驱动过渡的关键阶段,具备长期战略价值。短期商业化放量路径将是渐进式的。最具投资价值的细分环节为<strong class="highlight-text">高速互联</strong>、<strong class="highlight-text">液冷散热</strong>及<strong class="highlight-text">具备核心集成能力的合作伙伴</strong>。投资者需重点跟踪超节点实际出货量、核心供应商相关业务收入及MindSpore生态发展等关键指标。
|
||
</p>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-zebra w-full text-sm">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称 / 代码</th>
|
||
<th>涨跌幅</th>
|
||
<th>异动日期</th>
|
||
<th class="w-2/3">驱动逻辑与核心结论</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=002272" target="_blank" class="text-sky-400 hover:text-sky-300">川润股份 (002272)</a></td>
|
||
<td class="text-error font-bold">+9.98%</td>
|
||
<td>2025-08-26</td>
|
||
<td class="text-xs">华为昇腾384超节点液冷独家供应商身份坐实+产能翻倍+城地香江全国算力节点大单,催化资金抢筹涨停。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=603496" target="_blank" class="text-sky-400 hover:text-sky-300">恒为科技 (603496)</a></td>
|
||
<td class="text-error font-bold">+10.02%</td>
|
||
<td>2025-07-18</td>
|
||
<td class="text-xs">WAIC2025前夕,公司确认将现场展示已交付的昇腾384超节点整机,叠加3.2亿元运营商AI训练集群订单落地,资金抢筹导致涨停。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=688629" target="_blank" class="text-sky-400 hover:text-sky-300">华丰科技 (688629)</a></td>
|
||
<td class="text-error font-bold">+20.0%</td>
|
||
<td>2025-09-18</td>
|
||
<td class="text-xs">华为全联接大会官宣昇腾950PR芯片2026Q1量产、互联带宽翻倍,华丰科技作为昇腾AI服务器高速背板连接器一供,224G新品已通过华为测试,2026年量价齐升预期被资金提前兑现。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=002897" target="_blank" class="text-sky-400 hover:text-sky-300">意华股份 (002897)</a></td>
|
||
<td class="text-error font-bold">+6.47%</td>
|
||
<td>2025-09-19</td>
|
||
<td class="text-xs">华为昇腾芯片和超节点发展规划超预期,公司作为华为400G高速I/O连接器核心供应商(份额70%)深度受益,业绩反转迹象明显,市场资金积极布局。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=002436" target="_blank" class="text-sky-400 hover:text-sky-300">兴森科技 (002436)</a></td>
|
||
<td class="text-error font-bold">+9.99%</td>
|
||
<td>2025-09-11</td>
|
||
<td class="text-xs">“华为昇腾910C基板70%独供”传闻点燃情绪,叠加FCBGA/ABF国产替代与长江存储扩产双轮驱动,资金抢筹封板。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=600410" target="_blank" class="text-sky-400 hover:text-sky-300">华胜天成 (600410)</a></td>
|
||
<td class="text-error font-bold">+9.99%</td>
|
||
<td>2025-11-18</td>
|
||
<td class="text-xs">资金提前抢筹华为“CANN 4.0”发布会,该技术旨在提升算力利用率。公司是A股唯一已落地昇腾AI智算中心并兑现收入的昇腾总包商。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=000592" target="_blank" class="text-sky-400 hover:text-sky-300">平潭发展 (000592)</a></td>
|
||
<td class="text-error font-bold">+10.02%</td>
|
||
<td>2025-11-17</td>
|
||
<td class="text-xs">资金抢在“平潭两岸融合智算中心”技术发布前夜,锁定其“华为昇腾+两岸数据特区”唯一上市平台稀缺筹码。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=002771" target="_blank" class="text-sky-400 hover:text-sky-300">真视通 (002771)</a></td>
|
||
<td class="text-error font-bold">+10.0%</td>
|
||
<td>2025-07-23</td>
|
||
<td class="text-xs">因“华为昇腾910C首批OEM订单+全国一体化算力行动计划”双重催化,午后资金集中封板涨停。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=003007" target="_blank" class="text-sky-400 hover:text-sky-300">直真科技 (003007)</a></td>
|
||
<td class="text-error font-bold">+10.01%</td>
|
||
<td>2025-07-25</td>
|
||
<td class="text-xs">政策强制建设算力网络调度平台叠加公司4.8亿元运营商大单落地,成为算力运维环节最直接受益标的。</td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font-semibold"><a href="https://valuefrontier.cn/company?scode=002065" target="_blank" class="text-sky-400 hover:text-sky-300">东华软件 (002065)</a></td>
|
||
<td class="text-error font-bold">+10.0%</td>
|
||
<td>2025-09-22</td>
|
||
<td class="text-xs">受益于武汉超算二期(基于昇腾)交付高峰确认收入,叠加其高速线模组已规模供货Atlas 950超节点。</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
</div>
|
||
|
||
</main>
|
||
|
||
<!-- Footer -->
|
||
<footer class="text-center text-xs text-slate-500 py-8 mt-8 border-t border-slate-800">
|
||
<p>北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现</p>
|
||
<p class="mt-1">本报告为AI合成数据,所有内容仅供参考,不构成任何投资建议。投资需谨慎。</p>
|
||
</footer>
|
||
|
||
</div>
|
||
|
||
<script type="text/javascript">
|
||
var chartDom = document.getElementById('roadmapChart');
|
||
var myChart = echarts.init(chartDom);
|
||
var option;
|
||
|
||
option = {
|
||
backgroundColor: 'transparent',
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: {
|
||
type: 'shadow'
|
||
},
|
||
backgroundColor: 'rgba(17, 24, 39, 0.8)',
|
||
borderColor: '#00f2ea',
|
||
borderWidth: 1,
|
||
textStyle: {
|
||
color: '#cbd5e1'
|
||
}
|
||
},
|
||
legend: {
|
||
data: ['SuperPoD/Cluster', '芯片迭代'],
|
||
textStyle: {
|
||
color: '#9ca3af'
|
||
},
|
||
top: '5%'
|
||
},
|
||
grid: {
|
||
left: '3%',
|
||
right: '4%',
|
||
bottom: '3%',
|
||
containLabel: true
|
||
},
|
||
xAxis: {
|
||
type: 'category',
|
||
data: ['2025-Q4', '2026-Q1', '2026-Q4', '2027-Q4', '2028-Q1', '2028-Q4'],
|
||
axisLine: {
|
||
lineStyle: {
|
||
color: '#475569'
|
||
}
|
||
},
|
||
axisLabel: {
|
||
color: '#9ca3af'
|
||
}
|
||
},
|
||
yAxis: {
|
||
type: 'value',
|
||
name: '产品/规模',
|
||
splitLine: {
|
||
lineStyle: {
|
||
type: 'dashed',
|
||
color: '#334155'
|
||
}
|
||
},
|
||
axisLine: {
|
||
show: true,
|
||
lineStyle: {
|
||
color: '#475569'
|
||
}
|
||
},
|
||
axisLabel: {
|
||
color: '#9ca3af',
|
||
formatter: function (value) {
|
||
if (value === 1) return '芯片';
|
||
if (value === 2) return '超节点';
|
||
return '';
|
||
}
|
||
}
|
||
},
|
||
series: [
|
||
{
|
||
name: 'SuperPoD/Cluster',
|
||
type: 'bar',
|
||
stack: 'total',
|
||
barWidth: '40%',
|
||
label: {
|
||
show: true,
|
||
position: 'inside',
|
||
formatter: '{c}',
|
||
color: '#020617',
|
||
fontWeight: 'bold',
|
||
fontSize: 10,
|
||
},
|
||
itemStyle: {
|
||
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
||
{offset: 0, color: '#2dd4bf'},
|
||
{offset: 1, color: '#0d9488'}
|
||
]),
|
||
borderRadius: [5, 5, 0, 0]
|
||
},
|
||
data: [
|
||
{ value: 2, label: {formatter: 'Atlas 950 SuperPoD\n(8192卡)'} },
|
||
null,
|
||
null,
|
||
{ value: 2, label: {formatter: 'Atlas 950\nSuperCluster\n(8192卡)'} },
|
||
null,
|
||
{ value: 2, label: {formatter: 'Atlas 960\nSuperCluster\n(15488卡)'} }
|
||
]
|
||
},
|
||
{
|
||
name: '芯片迭代',
|
||
type: 'scatter',
|
||
symbolSize: 20,
|
||
itemStyle: {
|
||
color: '#a78bfa',
|
||
borderColor: '#d8b4fe',
|
||
borderWidth: 2,
|
||
shadowColor: 'rgba(167, 139, 250, 0.8)',
|
||
shadowBlur: 10
|
||
},
|
||
data: [
|
||
null,
|
||
{ value: ['2026-Q1', 1], name: '昇腾 950PR' },
|
||
{ value: ['2026-Q4', 1], name: '昇腾 950DT / 鲲鹏 950' },
|
||
{ value: ['2027-Q4', 1], name: '昇腾 960' },
|
||
{ value: ['2028-Q1', 1], name: '鲲鹏 960' },
|
||
{ value: ['2028-Q4', 1], name: '昇腾 970' },
|
||
],
|
||
tooltip: {
|
||
formatter: function (params) {
|
||
return params.name + '<br/>上市时间: ' + params.value[0];
|
||
}
|
||
}
|
||
}
|
||
]
|
||
};
|
||
|
||
option && myChart.setOption(option);
|
||
window.addEventListener('resize', myChart.resize);
|
||
</script>
|
||
|
||
</body>
|
||
</html> |