432 lines
32 KiB
HTML
432 lines
32 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>DeepSeek FP8 概念深度研究</title>
|
||
<script src="https://cdn.tailwindcss.com"></script>
|
||
<link href="https://cdn.jsdelivr.net/npm/daisyui@4.11.1/dist/full.min.css" rel="stylesheet" type="text/css" />
|
||
<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=Poppins:wght@300;400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');
|
||
|
||
body {
|
||
font-family: 'Poppins', sans-serif;
|
||
background-color: #000010;
|
||
color: #E0E0E0;
|
||
overflow-x: hidden;
|
||
}
|
||
|
||
.font-rajdhani {
|
||
font-family: 'Rajdhani', sans-serif;
|
||
}
|
||
|
||
.glass-card {
|
||
background: rgba(10, 10, 30, 0.4);
|
||
backdrop-filter: blur(20px);
|
||
-webkit-backdrop-filter: blur(20px);
|
||
border: 1px solid rgba(0, 191, 255, 0.15);
|
||
border-radius: 2rem; /* 极致圆角 */
|
||
box-shadow: 0 0 40px rgba(0, 191, 255, 0.08);
|
||
transition: all 0.3s ease;
|
||
}
|
||
|
||
.glass-card:hover {
|
||
border-color: rgba(0, 191, 255, 0.4);
|
||
transform: translateY(-5px);
|
||
box-shadow: 0 10px 50px rgba(0, 191, 255, 0.15);
|
||
}
|
||
|
||
.glow-text {
|
||
text-shadow: 0 0 8px rgba(0, 191, 255, 0.6), 0 0 16px rgba(138, 43, 226, 0.4);
|
||
}
|
||
|
||
.heading-gradient {
|
||
background-image: linear-gradient(90deg, #67e8f9, #c084fc);
|
||
-webkit-background-clip: text;
|
||
background-clip: text;
|
||
color: transparent;
|
||
}
|
||
|
||
.bento-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(6, 1fr);
|
||
gap: 1.5rem;
|
||
}
|
||
|
||
.grid-col-span-6 { grid-column: span 6; }
|
||
.grid-col-span-4 { grid-column: span 6; }
|
||
.grid-col-span-3 { grid-column: span 6; }
|
||
.grid-col-span-2 { grid-column: span 6; }
|
||
|
||
@media (min-width: 1024px) {
|
||
.grid-col-span-4 { grid-column: span 4; }
|
||
.grid-col-span-3 { grid-column: span 3; }
|
||
.grid-col-span-2 { grid-column: span 2; }
|
||
}
|
||
|
||
/* Background Animation */
|
||
#background-animation {
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: -1;
|
||
background: #000010;
|
||
background-image:
|
||
radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
|
||
radial-gradient(ellipse at 80% 30%, rgba(0, 191, 255, 0.2) 0%, transparent 50%);
|
||
animation: background-pan 30s linear infinite;
|
||
}
|
||
|
||
@keyframes background-pan {
|
||
0% { background-position: 0% 0%; }
|
||
50% { background-position: 100% 100%; }
|
||
100% { background-position: 0% 0%; }
|
||
}
|
||
|
||
.table thead th {
|
||
background-color: rgba(0, 191, 255, 0.1);
|
||
color: #67e8f9;
|
||
border-bottom: 1px solid rgba(0, 191, 255, 0.2);
|
||
}
|
||
.table tbody tr:hover {
|
||
background-color: rgba(138, 43, 226, 0.1);
|
||
}
|
||
.table {
|
||
background: transparent;
|
||
}
|
||
.table td, .table th {
|
||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||
}
|
||
|
||
.highlight {
|
||
color: #67e8f9;
|
||
font-weight: 600;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="min-h-screen">
|
||
<div id="background-animation"></div>
|
||
|
||
<div class="container mx-auto p-4 md:p-8">
|
||
|
||
<header class="text-center mb-12">
|
||
<h1 class="text-5xl md:text-7xl font-rajdhani font-bold glow-text heading-gradient mb-4">DeepSeek FP8</h1>
|
||
<p class="text-lg text-slate-400 max-w-4xl mx-auto">软件定义硬件 · 算法赋能算力 · 国产AI生态新纪元</p>
|
||
<div class="mt-4 text-xs text-slate-500">
|
||
<p>北京价值前沿科技有限公司 AI投研agent:“价小前投研” 进行投研呈现</p>
|
||
<p>本报告为AI合成数据,投资需谨慎。</p>
|
||
</div>
|
||
</header>
|
||
|
||
<main class="space-y-6">
|
||
|
||
<!-- Bento Grid Start -->
|
||
<div class="bento-grid">
|
||
|
||
<!-- Concept Event -->
|
||
<div class="glass-card p-6 md:p-8 grid-col-span-6">
|
||
<h2 class="text-2xl font-rajdhani font-bold mb-4 heading-gradient">核心概念事件</h2>
|
||
<p class="text-slate-300 mb-4">
|
||
<span class="highlight">DeepSeek FP8</span> 概念的核心是围绕中国AI大模型公司 <span class="highlight">DeepSeek(深度求索)</span> 在其新一代大模型训练和推理中,开创性地大规模应用 <span class="highlight">FP8(8位浮点数)</span> 精度,特别是针对国产AI芯片生态进行优化的 <span class="highlight">UE8M0 FP8</span> 格式。这一举动被市场视为软件定义硬件、算法赋能算力的标志性事件。
|
||
</p>
|
||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 text-sm">
|
||
<div class="border-l-2 border-cyan-400 pl-4">
|
||
<h4 class="font-semibold text-slate-100">背景</h4>
|
||
<p class="text-slate-400">算力成本、显存消耗、通信带宽成为大模型核心瓶颈,国产AI芯片寻求性能与生态突破意愿迫切。</p>
|
||
</div>
|
||
<div class="border-l-2 border-cyan-400 pl-4">
|
||
<h4 class="font-semibold text-slate-100">核心催化</h4>
|
||
<p class="text-slate-400">DeepSeek V3.1宣布采用“UE8M0 FP8”精度,并明确指出此举是“针对即将发布的下一代国产芯片设计”。</p>
|
||
</div>
|
||
<div class="border-l-2 border-cyan-400 pl-4">
|
||
<h4 class="font-semibold text-slate-100">市场反应</h4>
|
||
<p class="text-slate-400">消息引发资本市场高度关注,云天励飞、海光信息等个股20CM涨停,标志市场对“模型联动国产芯片”新范式的强烈认同。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Core Viewpoint & Cost Chart -->
|
||
<div class="glass-card p-6 md:p-8 grid-col-span-4">
|
||
<h2 class="text-2xl font-rajdhani font-bold mb-4 heading-gradient">核心观点摘要</h2>
|
||
<p class="text-slate-300">
|
||
DeepSeek FP8概念的本质,是在国产AI算力硬件性能尚存差距的背景下,由顶尖算法公司发起的一场“<span class="highlight">软件定义硬件</span>”的效率革命。其核心驱动力是通过算法创新(低精度训练)来弥补硬件短板,实现<span class="highlight">成本骤降与供应链安全</span>。该概念目前正从“主题炒作”向“基本面验证”的早期阶段过渡,未来潜力巨大,但成功与否高度依赖于国产芯片厂商的硬件原生支持和整个生态的协同推进。
|
||
</p>
|
||
</div>
|
||
|
||
<div class="glass-card p-6 grid-col-span-2">
|
||
<h3 class="text-lg font-rajdhani font-bold mb-2 heading-gradient">训练成本对比 (美元)</h3>
|
||
<div id="cost-chart" class="w-full h-48"></div>
|
||
</div>
|
||
|
||
<!-- Core Logic & Drivers -->
|
||
<div class="glass-card p-6 md:p-8 grid-col-span-6">
|
||
<h2 class="text-2xl font-rajdhani font-bold mb-4 heading-gradient">核心逻辑与市场认知分析</h2>
|
||
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
|
||
<div>
|
||
<h3 class="text-xl font-rajdhani font-semibold mb-2 heading-gradient">三大核心驱动力</h3>
|
||
<ul class="space-y-3 text-slate-300 text-sm">
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2 text-cyan-400 flex-shrink-0 mt-0.5" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /></svg>
|
||
<span><strong class="text-slate-100">成本驱动 (效率革命):</strong> 训练算力下降<span class="highlight">90%</span>,成本仅为同类模型<span class="highlight">5%-10%</span>。API定价最高下降<span class="highlight">96%</span>,激发“杰文斯悖论”,刺激总算力需求爆发。</span>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2 text-cyan-400 flex-shrink-0 mt-0.5" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /></svg>
|
||
<span><strong class="text-slate-100">战略驱动 (国产替代):</strong> 官方直言为国产芯片设计,引导和加速国产AI芯片迭代,构建独立于NVIDIA CUDA的国产化解决方案。</span>
|
||
</li>
|
||
<li class="flex items-start">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5 mr-2 text-cyan-400 flex-shrink-0 mt-0.5" viewBox="0 0 20 20" fill="currentColor"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd" /></svg>
|
||
<span><strong class="text-slate-100">技术驱动 (范式转移):</strong> 推动AI产业从“暴力美学”的算力堆砌,转向“<span class="highlight">算效优化</span>”新范式,为追赶者提供非对称竞争路径。</span>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<div class="lg:col-span-2">
|
||
<h3 class="text-xl font-rajdhani font-semibold mb-2 heading-gradient">市场预期差分析</h3>
|
||
<div class="space-y-3 text-slate-300 text-sm">
|
||
<div class="p-4 rounded-lg bg-black/20 border border-purple-500/20">
|
||
<p><strong class="text-slate-100">原创性 vs. 工程开创性:</strong> 市场可能误认为UE8M0是DeepSeek独创。实际上,标准源自NVIDIA,DeepSeek的核心贡献是“<span class="highlight">大规模工程实现与实践</span>”,解决了FP8训练不收敛等稳定性难题。</p>
|
||
</div>
|
||
<div class="p-4 rounded-lg bg-black/20 border border-purple-500/20">
|
||
<p><strong class="text-slate-100">普适性 vs. 结构性利好:</strong> 并非所有国产芯片都能同等受益。芯片<span class="highlight">原生支持FP8</span>至关重要,非原生支持“至少损失30%性能和20%的智商”。核心受益者是硬件层面深度布局FP8的公司。</p>
|
||
</div>
|
||
<div class="p-4 rounded-lg bg-black/20 border border-purple-500/20">
|
||
<p><strong class="text-slate-100">完全开源 vs. 核心保留:</strong> DeepSeek虽开源了DeepGEMM等库,但解决稳定训练的关键技术(如底层改写、数据索引机制)<span class="highlight">并未开源</span>,保留了自身核心技术壁垒。</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Catalysts & Future Path -->
|
||
<div class="glass-card p-6 md:p-8 grid-col-span-3">
|
||
<h2 class="text-2xl font-rajdhani font-bold mb-4 heading-gradient">关键催化剂与发展路径</h2>
|
||
<h3 class="font-semibold text-slate-100 mb-2">近期催化剂 (3-6个月)</h3>
|
||
<ul class="list-disc list-inside space-y-2 text-slate-300 text-sm mb-4">
|
||
<li><span class="highlight">华为下一代昇腾芯片发布:</span> 作为协同开发伙伴,其原生支持FP8的芯片发布将是路线成功的关键验证。</li>
|
||
<li><span class="highlight">更多国产芯片适配公告:</span> 寒武纪、摩尔线程等与主流模型完成深度适配并公布性能数据。</li>
|
||
<li><span class="highlight">标杆项目落地:</span> 出现基于“DeepSeek模型 + 国产FP8芯片”方案的大型商业或政务采购订单。</li>
|
||
</ul>
|
||
<h3 class="font-semibold text-slate-100 mb-2">长期发展路径</h3>
|
||
<ul class="timeline timeline-vertical">
|
||
<li>
|
||
<div class="timeline-start timeline-box">标准确立 (当前-2025)</div>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-cyan-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg></div>
|
||
<hr class="bg-cyan-400"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-cyan-400"/>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-cyan-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg></div>
|
||
<div class="timeline-end timeline-box">硬件普及 (2025-2026)</div>
|
||
<hr class="bg-cyan-400"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-cyan-400"/>
|
||
<div class="timeline-start timeline-box">生态繁荣 (2026以后)</div>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-cyan-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg></div>
|
||
<hr class="bg-cyan-400"/>
|
||
</li>
|
||
<li>
|
||
<hr class="bg-cyan-400"/>
|
||
<div class="timeline-middle"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" class="w-5 h-5 text-cyan-400"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.857-9.809a.75.75 0 00-1.214-.882l-3.483 4.79-1.88-1.88a.75.75 0 10-1.06 1.061l2.5 2.5a.75.75 0 001.137-.089l4-5.5z" clip-rule="evenodd" /></svg></div>
|
||
<div class="timeline-end timeline-box">端侧渗透 (未来)</div>
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
|
||
<!-- Risks -->
|
||
<div class="glass-card p-6 md:p-8 grid-col-span-3">
|
||
<h2 class="text-2xl font-rajdhani font-bold mb-4 heading-gradient">潜在风险与挑战</h2>
|
||
<div class="space-y-4 text-slate-300 text-sm">
|
||
<div class="alert bg-red-900/30 border border-red-500/50 text-red-300">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||
<div>
|
||
<h3 class="font-bold">技术风险</h3>
|
||
<div class="text-xs">收敛与精度问题仍是核心瓶颈;UE8M0与其他FP8格式可能导致生态碎片化。</div>
|
||
</div>
|
||
</div>
|
||
<div class="alert bg-yellow-900/30 border border-yellow-500/50 text-yellow-300">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||
<div>
|
||
<h3 class="font-bold">商业化风险</h3>
|
||
<div class="text-xs">国产芯片真实性能与稳定性待大规模验证;客户从CUDA生态迁移成本高,市场接受度存不确定性。</div>
|
||
</div>
|
||
</div>
|
||
<div class="alert bg-purple-900/30 border border-purple-500/50 text-purple-300">
|
||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||
<div>
|
||
<h3 class="font-bold">竞争风险</h3>
|
||
<div class="text-xs">NVIDIA自身也在大力推进低精度计算,其Hopper和Blackwell架构提供强大FP8算力,国产方案需建立性价比和生态护城河。</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</div>
|
||
<!-- Bento Grid End -->
|
||
|
||
<!-- Technical Deep Dive -->
|
||
<div class="glass-card p-6 md:p-8">
|
||
<h2 class="text-3xl font-rajdhani font-bold mb-6 text-center heading-gradient">技术深度解析</h2>
|
||
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||
<div class="p-4 rounded-xl bg-black/20 space-y-2">
|
||
<h3 class="font-semibold text-lg text-slate-100">什么是 UE8M0 FP8?</h3>
|
||
<p class="text-sm text-slate-400"><strong class="text-cyan-400">U:</strong> Unsigned, 无符号,只能表示0或正数。</p>
|
||
<p class="text-sm text-slate-400"><strong class="text-cyan-400">E8:</strong> Exponent, 用8位表达指数。</p>
|
||
<p class="text-sm text-slate-400"><strong class="text-cyan-400">M0:</strong> Mantissa, 用0位表达尾数 (默认为1)。</p>
|
||
<p class="text-sm text-slate-300 mt-2">这种格式只能表示2的n次方,主要用作缩放因子(Scale)。其优势在于可将复杂的乘法运算 (<span class="font-mono">2^m * 2^n</span>) 转化为简单的加法 (<span class="font-mono">2^(m+n)</span>),加法器电路面积远小于乘法器,运算速度快数倍,且显著节约芯片面积。</p>
|
||
</div>
|
||
<div class="p-4 rounded-xl bg-black/20 space-y-2">
|
||
<h3 class="font-semibold text-lg text-slate-100">对国产算力的影响</h3>
|
||
<p class="text-sm text-slate-300">采用UE8M0 FP8能带来国产卡FP8精度的调优与使用效率提升,将进一步缩小与NV芯片的效率/成本差距,大大增加国产芯片的可用性。</p>
|
||
<ul class="text-sm text-slate-400 list-disc list-inside mt-2 space-y-1">
|
||
<li><span class="highlight">华为昇腾:</span> 下一代芯片(910x)将支持FP8,预计Q4送测。</li>
|
||
<li><span class="highlight">寒武纪:</span> 690、思元590等已支持FP8。</li>
|
||
<li><span class="highlight">海光信息:</span> DeepSeekV3已与海光DCU完成适配并投入使用。</li>
|
||
</ul>
|
||
<p class="text-sm text-slate-300 mt-2">旨在构建“‘精度格式-硬件架构-框架生态’三位一体的国产化解决方案”。</p>
|
||
</div>
|
||
<div class="p-4 rounded-xl bg-black/20 space-y-2">
|
||
<h3 class="font-semibold text-lg text-slate-100">DeepSeek的贡献</h3>
|
||
<p class="text-sm text-slate-300">NVIDIA 提供了标准(UE8M0 格式),而DeepSeek贡献了工程实现与大规模实践(DeepGEMM代码、FP8 稳定训练方案)。</p>
|
||
<ul class="text-sm text-slate-400 list-disc list-inside mt-2 space-y-1">
|
||
<li><strong class="text-cyan-400">DeepGEMM:</strong> 开源FP8通用矩阵乘法库, 针对Hopper优化, 性能比 CUTLASS3.6 快 2.7 倍。</li>
|
||
<li><strong class="text-cyan-400">DeepEP:</strong> 开源EP通信库, 用于MoE模型, 提供原生FP8调度支持。</li>
|
||
<li><strong class="text-cyan-400">FP8混合精度训练:</strong> 首次在大规模模型上验证了FP8训练的可行性与有效性,释放硬件全部潜力。</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<!-- Stock Tables -->
|
||
<div class="glass-card p-6 md:p-8">
|
||
<h2 class="text-3xl font-rajdhani font-bold mb-6 text-center heading-gradient">产业链核心标的</h2>
|
||
|
||
<h3 class="text-xl font-rajdhani font-semibold mb-4 heading-gradient">相关概念股</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-sm w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>代码</th>
|
||
<th>关联原因</th>
|
||
<th>标签</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<!-- Data from stocks json -->
|
||
<tr><td>寒武纪</td><td><a href="https://valuefrontier.cn/company?scode=688256" target="_blank" class="link link-hover text-cyan-400">688256</a></td><td>公司先进工艺平台芯片项目支持FP8格式训练,可有效提升大模型训练效率。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>芯原股份</td><td><a href="https://valuefrontier.cn/company?scode=688521" target="_blank" class="link link-hover text-cyan-400">688521</a></td><td>在研的高性能GPU技术拟支持INT4/INT8/FP8/FP16等多种数据格式。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>兆易创新</td><td><a href="https://valuefrontier.cn/company?scode=603986" target="_blank" class="link link-hover text-cyan-400">603986</a></td><td>GD5F系列支持FP8混合精度计算,M87系列支持DDR5 ECC,与UE8MOFP8内存架构协同。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>智微智能</td><td><a href="https://valuefrontier.cn/company?scode=001339" target="_blank" class="link link-hover text-cyan-400">001339</a></td><td>基于AMD FP8平台开发的高算力MINI AI PC产品项目已研发完成。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>佳都科技</td><td><a href="https://valuefrontier.cn/company?scode=600728" target="_blank" class="link link-hover text-cyan-400">600728</a></td><td>基于FP8混合精度预训练等技术,实现知行大模型训练效率大幅提升。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>大华股份</td><td><a href="https://valuefrontier.cn/company?scode=002236" target="_blank" class="link link-hover text-cyan-400">002236</a></td><td>为实现大模型高效训练,优化训练框架支持FP32和FP8混合精度训练。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>理工能科</td><td><a href="https://valuefrontier.cn/company?scode=002322" target="_blank" class="link link-hover text-cyan-400">002322</a></td><td>公司人工智能战略蓝图包含FP8精度671B的LLM大脑。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>中兴通讯</td><td><a href="https://valuefrontier.cn/company?scode=000063" target="_blank" class="link link-hover text-cyan-400">000063</a></td><td>FP8针对下一代国产芯片设计,中兴微在国内芯片设计领域具有重要地位。</td><td><div class="badge badge-info badge-outline">技术支持</div></td></tr>
|
||
<tr><td>科德教育</td><td><a href="https://valuefrontier.cn/company?scode=300192" target="_blank" class="link link-hover text-cyan-400">300192</a></td><td>参股的中昊芯英将DeepSeek-V3系列模型(含UE8M0 FP8)作为重点优化对象。</td><td><div class="badge badge-accent badge-outline">间接相关</div> <div class="badge badge-ghost">中昊芯英</div></td></tr>
|
||
<tr><td>艾布鲁</td><td><a href="https://valuefrontier.cn/company?scode=301259" target="_blank" class="link link-hover text-cyan-400">301259</a></td><td>控股子公司持有中昊芯英(杭州)科技股份。</td><td><div class="badge badge-accent badge-outline">间接相关</div> <div class="badge badge-ghost">中昊芯英</div></td></tr>
|
||
<tr><td>和而泰</td><td><a href="https://valuefrontier.cn/company?scode=002402" target="_blank" class="link link-hover text-cyan-400">002402</a></td><td>持股摩尔线程,其第四代GPU增加FP8支持,支撑面向DeepSeek类模型的万卡集群方案。</td><td><div class="badge badge-accent badge-outline">间接相关</div> <div class="badge badge-ghost">摩尔线程</div></td></tr>
|
||
<tr><td>联美控股</td><td><a href="https://valuefrontier.cn/company?scode=600167" target="_blank" class="link link-hover text-cyan-400">600167</a></td><td>子公司对摩尔线程进行股权投资。</td><td><div class="badge badge-accent badge-outline">间接相关</div> <div class="badge badge-ghost">摩尔线程</div></td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
<div class="divider my-8 before:bg-slate-700 after:bg-slate-700">涨停分析</div>
|
||
<h3 class="text-xl font-rajdhani font-semibold mb-4 heading-gradient">涨幅分析与逻辑验证</h3>
|
||
<div class="overflow-x-auto">
|
||
<table class="table table-sm w-full">
|
||
<thead>
|
||
<tr>
|
||
<th>股票名称</th>
|
||
<th>代码</th>
|
||
<th>日期</th>
|
||
<th>涨幅</th>
|
||
<th>核心驱动逻辑</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<!-- Data from rise analysis json -->
|
||
<tr><td>云天励飞</td><td><a href="https://valuefrontier.cn/company?scode=688343" target="_blank" class="link link-hover text-cyan-400">688343</a></td><td>2025-08-22</td><td><span class="text-error font-bold">20.0%</span></td><td>DeepSeek适配国产FP8,公司14nm推理芯片原生支持FP8并完成适配,叠加指数调整,三因素共振。</td></tr>
|
||
<tr><td>海光信息</td><td><a href="https://valuefrontier.cn/company?scode=688041" target="_blank" class="link link-hover text-cyan-400">688041</a></td><td>2025-08-22</td><td><span class="text-error font-bold">20.0%</span></td><td>DeepSeek-V3.1宣布率先完成海光DCU适配,逻辑最纯粹的已验证者,叠加工信部政策催化。</td></tr>
|
||
<tr><td>航锦科技</td><td><a href="https://valuefrontier.cn/company?scode=000818" target="_blank" class="link link-hover text-cyan-400">000818</a></td><td>2025-08-22</td><td><span class="text-error font-bold">10.0%</span></td><td>DeepSeek V3.1白皮书确认公司FP8训练平台进入其供应链,政策事件与基本面落地共振。</td></tr>
|
||
<tr><td>中芯国际</td><td><a href="https://valuefrontier.cn/company?scode=688981" target="_blank" class="link link-hover text-cyan-400">688981</a></td><td>2025-08-22</td><td><span class="text-error font-bold">14.19%</span></td><td>AI算力需求爆发,国产替代加速,作为芯片制造环节核心直接受益。云天励飞14nm芯片由其代工。</td></tr>
|
||
<tr><td>龙芯中科</td><td><a href="https://valuefrontier.cn/company?scode=688047" target="_blank" class="link link-hover text-cyan-400">688047</a></td><td>2025-08-22</td><td><span class="text-error font-bold">7.30%</span></td><td>最新处理器已集成对UE8M0 FP8格式的支持,在硬件层面支持新兴技术标准,符合国产AI算力发展趋势。</td></tr>
|
||
</tbody>
|
||
</table>
|
||
</div>
|
||
|
||
</div>
|
||
|
||
</main>
|
||
</div>
|
||
|
||
<script>
|
||
document.addEventListener('DOMContentLoaded', function () {
|
||
var chartDom = document.getElementById('cost-chart');
|
||
var myChart = echarts.init(chartDom);
|
||
var option;
|
||
|
||
option = {
|
||
tooltip: {
|
||
trigger: 'axis',
|
||
axisPointer: { type: 'shadow' },
|
||
backgroundColor: 'rgba(10, 10, 30, 0.7)',
|
||
borderColor: '#67e8f9',
|
||
textStyle: { color: '#E0E0E0' }
|
||
},
|
||
grid: {
|
||
left: '3%',
|
||
right: '4%',
|
||
bottom: '3%',
|
||
containLabel: true
|
||
},
|
||
xAxis: {
|
||
type: 'value',
|
||
boundaryGap: [0, 0.01],
|
||
axisLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.3)' } },
|
||
splitLine: { show: false },
|
||
axisLabel: {
|
||
formatter: function (value) {
|
||
if (value >= 1000) {
|
||
return (value / 1000) + 'B';
|
||
}
|
||
return value + 'M';
|
||
}
|
||
}
|
||
},
|
||
yAxis: {
|
||
type: 'category',
|
||
data: ['DeepSeek V3 (FP8)', 'GPT-4 (Est.)'],
|
||
axisLine: { lineStyle: { color: 'rgba(255, 255, 255, 0.3)' } },
|
||
},
|
||
series: [
|
||
{
|
||
name: '训练成本',
|
||
type: 'bar',
|
||
data: [5.58, 1000],
|
||
itemStyle: {
|
||
borderRadius: [0, 5, 5, 0],
|
||
color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [
|
||
{ offset: 0, color: '#8A2BE2' },
|
||
{ offset: 1, color: '#00BFFF' }
|
||
])
|
||
},
|
||
label: {
|
||
show: true,
|
||
position: 'right',
|
||
formatter: '${c} M',
|
||
color: '#fff'
|
||
}
|
||
}
|
||
]
|
||
};
|
||
|
||
myChart.setOption(option);
|
||
window.addEventListener('resize', myChart.resize);
|
||
});
|
||
</script>
|
||
|
||
</body>
|
||
</html> |