-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgpu.html
More file actions
88 lines (78 loc) · 3.72 KB
/
gpu.html
File metadata and controls
88 lines (78 loc) · 3.72 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="zh-Hant">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>顯示卡 (GPU) - 電腦硬體架構指南</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<header>
<div class="logo">3D電腦硬體介紹網站</div>
<div class="menu-toggle">
<i class="fas fa-bars"></i>
</div>
<nav>
<ul>
<li><a href="index.html">首頁</a></li>
<li><a href="comparison.html">元件比較</a></li>
<li><a href="overview.html">架構總覽</a></li>
</ul>
</nav>
</header>
<main class="container">
<section class="detail-hero">
<div class="detail-info">
<h1>顯示卡 (GPU)</h1>
<p class="subtitle" style="color: var(--text-muted); font-size: 1.2rem;">Graphics Processing Unit -
電腦的眼睛</p>
</div>
<img src="gpu.png" alt="GPU Image" class="detail-img">
</section>
<section>
<div class="info-section">
<h2>基本定義</h2>
<p>GPU (圖形處理單元) 是一種專門設計用於快速處理和修改記憶體的電子電路,以加速圖像在顯示器上的建立。現代獨立顯示卡通常包含自己的記憶體 (VRAM)。</p>
</div>
<div class="info-section">
<h2>功能說明</h2>
<ul style="padding-left: 20px; line-height: 1.6;">
<li><strong>3D 渲染:</strong> 處理多邊形、紋理映射、光影計算 (如 Ray Tracing)。</li>
<li><strong>平行運算:</strong> 擁有數千個核心,極其適合處理大量重複的並行任務(如 AI 運算、影片解碼)。</li>
<li><strong>影像輸出:</strong> 將數位訊號轉換為螢幕可顯示的影像。</li>
</ul>
</div>
<div class="info-section">
<h2>系統角色與交互關係</h2>
<div style="margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap;">
<div class="glass-panel" style="flex: 1;">
<h3 style="color: var(--primary-color)">CPU 的畫師</h3>
<p>CPU 告訴 GPU「這裡有個場景,有這些物件」,GPU 負責算出每個像素的顏色。</p>
</div>
<div class="glass-panel" style="flex: 1;">
<h3 style="color: var(--primary-color)">VRAM 的重要性</h3>
<p>GPU 需要在 VRAM 中暫存大量的紋理貼圖。高解析度 (4K) 遊戲需要極大的 VRAM 容量。</p>
</div>
</div>
</div>
</section>
<div style="text-align: center; margin: 4rem 0;">
<a href="index.html" class="glass-panel" style="display: inline-block;">← 返回首頁導覽</a>
</div>
</main>
<footer>
<div class="footer-content">
<p>聯絡資訊:</p>
<div class="contact-item">
<i class="fab fa-google"></i> Gmail: c113181121@nkust.edu.tw
</div>
<div class="contact-item">
<i class="fab fa-github"></i> github: <a href="https://github.com/EK181121"
target="_blank">https://github.com/EK181121</a>
</div>
</div>
</footer>
</body>
</html>