Mobile 375 × 812

Desktop 1440 × 900

Score: 73 / 100
Based on 8 categories, 0 sections
Decent speed, but optimizing further could improve engagement.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Good server performance with room for optimization.
Mostly compliant — a few items need attention.
Rich content metadata — your pages look great everywhere.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 43.5 MB (32.9 MB transferred)
Performance issues directly impact user engagement and conversion rates.
1 button(s) with no accessible text
Accessibility issues exclude users with disabilities — up to 15% of your potential audience.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/2309d7fb-10ba-41a3-84f7-56af5f1737b8)<a href="https://beavercheck.com/results/2309d7fb-10ba-41a3-84f7-56af5f1737b8"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Fnvidia.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Fnvidia.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 17.2s exceeds Google's 2.5s 'Good' threshold and the 1 performance issue below directly contributes to it. Accessibility issues exclude users who rely on assistive technology — an estimated 15% of your potential audience. Addressing the critical issues below would have the most immediate impact on your user trust.
6 barrier(s) likely increasing bounce by ~28%.
Page takes 17.2s to load
+12% bounceUsers abandon at ~3s — you're 14.7s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 5.2s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
6 link(s) with generic text ("click here", "read more")
+1% bounceScreen-reader users navigating by link list see no context — and search engines can't infer relevance
Fix: Rewrite with descriptive phrases that identify the destination
4 broken link(s) on the page
+5% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
TWD 8,000 investment → TWD 267/month returns
TWD 8,000
5h · 5 findings
TWD 267 /mo
~TWD 3,203 / year
No applicable regulations in this jurisdiction
TWD 2,400 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
5.0 developer hours at NT$1600/hr
Based on Taiwan rates (NT$1600/hr)
Start here for the best return on investment
TWD 267 / month at risk
~TWD 3,203 / year if left unfixed
TWD 267 /mo
103422.6 MB/mo × 2.581 TWD/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 5 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
7.27 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
17.22 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
5.22 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.044
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
8.25 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
179.34 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div#container-b97c27b406 > div.nv-img-as-bg > picture > img#image-container-b97c27b406 div#container-b97c27b406 > div.nv-img-as-bg > picture > img#image-container-b97c27b406 | /content/dam/en-zz/nvidiaweb/homepage/geforce/mfg/DLSS-4-... | 302.3 KiB | 154.8 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| nvidia.com/ | 1.5 s |
| www.nvidia.com/ | 816 ms |
| www.nvidia.com/zh-tw/ | 0.0 ms |
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.e... | 125.7 KiB | 120.8 KiB |
| 22.6 KiB | 19.6 KiB | |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-base.min.8... | 19.3 KiB | 19.0 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... | 135.7 KiB | 107.9 KiB |
| cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | 126.9 KiB | 67.3 KiB |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.b... | 59.2 KiB | 43.6 KiB |
| assets.adobedtm.com/5d4962a43b79/96fada676f0e/launch-95431b44ee81.min.js | 290.4 KiB | 38.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| www.nvidia.com/zh-tw/ | 4.5 s | 188 ms | 20 ms |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.b... | 3.1 s | 1.5 s | 38 ms |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... | 2.9 s | 1.9 s | 65 ms |
| Unattributable | 2.2 s | 108 ms | 0.0 ms |
| cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | 884 ms | 548 ms | 69 ms |
| assets.adobedtm.com/5d4962a43b79/96fada676f0e/launch-95431b44ee81.min.js | 723 ms | 423 ms | 262 ms |
| use.typekit.net/vvg2vkh.js | 614 ms | 543 ms | 34 ms |
| /etc.clientlibs/clientlibs/granite/jquery.min.cee8557e877... | 305 ms | 221 ms | 25 ms |
| www.nvidia.com/akam/13/3f492ba | 172 ms | 157 ms | 5.6 ms |
| www.nvidia.com/assets/account-wrapper/starfleet.js | 61 ms | 54 ms | 5.4 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 5.8 s |
| Other | 3.5 s |
| Style & Layout | 3.4 s |
| Rendering | 1.6 s |
| Script Parsing & Compilation | 576 ms |
| Garbage Collection | 365 ms |
| Parse HTML & CSS | 331 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| images.nvidia.com/aem-dam/Solutions/ot-js/ot-custom.js | 10.8 KiB | 3.2 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div#gtc26-skinny > div.nv-img-as-bg > picture > img#image-gtc26-skinny div#gtc26-skinny > div.nv-img-as-bg > picture > img#image-gtc26-skinny | /content/dam/en-zz/Solutions/homepage/v2/mfg/gtc26-web-sk... |
Make Autonomous Agents More Secure by Design With NVIDIA OpenShell div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Expands Open Models for Agentic and Physical AI div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
New Open Physical AI Data Factory Blueprint div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Build With OpenShell on NVIDIA DGX Spark and Station div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Dynamo 1.0 Powers Multi-Node Inference at Production Scale div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Adobe and NVIDIA Announce Strategic Collaboration div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
AI is a Five-Layer Cake div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 發表適用於代理 AI 之 Nemotron 3 模型系列 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX AI Garage: NVIDIA Igniting the Next Era of AI With Locally Accelerated Agen… div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Bringing Design, Engineering, and Manufacturing Into the AI Era div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Dassault Systèmes and NVIDIA partner to Build Next-Gen Industrial AI Platform div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Amazon Devices & Services 運用 NVIDIA 技術實現零接觸製造流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Expands Omniverse Blueprint for AI Factory Digital Twins div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Blackwell RTX PRO 可適用於各式工作站與伺服器 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 將推出實體人工智慧開放資料集,公開最大規模的合成資料集,推動實體人工智慧的開發 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Omniverse 將隨著實體人工智慧的採用浪潮,擴大生態系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 推出 fVDB ,以打造全球更大的數位模型 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 結合數位孿生與即時人工智慧,實現工業自動化 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
利用 Autodesk Maya 的 OpenUSD 增強功能簡化 3D 工作流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Blackwell 加快電腦輔助工程軟體的執行速度 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Earth-2 宣布新的 NIM div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
使用 NVIDIA ALCHEMI 徹底改變 AI 驅動的材料發現 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
透過 CUDA-Q 平台加速全球量子運算中心 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA AI 代工服務 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
宣布全新的加速量子經典運算系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
HPC 適用的 NVIDIA 框架 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
解決邊緣端的 HPC 問題 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Announcing NVIDIA DLSS 5 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA DLSS 4.5 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX. It's On. div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX Remix div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Frames Win Games div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
GeForce RTX 50 Series Graphics Cards and Desktops div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
GeForce RTX 50 系列筆記型電腦 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
The buzz from GDC 2026 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX AI Garage: RTX-Powered Video Generation News div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Leading Automakers Adopt NVIDIA DRIVE Hyperion for L4 Vehicles div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Mercedes-Benz Unveils New S-Class Built on NVIDIA DRIVE AV div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
現代汽車集團建構 NVIDIA Blackwell AI 工廠 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 推出全方位自動駕駛車輛安全系統 Halos div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
DRIVE AI 系統偵測實驗室用以改善自駕車安全 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
全球汽車合作夥伴展示人工智慧的未來 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 運用 Omniverse Cloud API 大幅提升自動化系統開發 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
汽車製造商全新浪潮:採用 NVIDIA DRIVE 進行自動駕駛 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA IGX Thor™ Now Generally Available div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA IGX Thor 將 Blackwell 技術導入全新邊緣 AI 應用 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
The Ultimate Platform for Physical AI and Robotics div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Amazon Devices & Services 運用 NVIDIA 技術實現零接觸製造流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Hugging Face 和 NVIDIA 加速開源機器人 AI 的研究進展 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
推動 AI 機器人的新一波浪潮 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
使用 NVIDIA OSMO 擴充支援人工智慧機器人的開發工作負載 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
J&J 將打造採用人工智慧的數位和機器人手術平台 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
隆重介紹 Issac AMR div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA and Emerald AI Accelerate Power-Flexible AI Deployment div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Launches Vera CPU, Purpose-Built for Agentic AI div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Storage Industry Adopts NVIDIA BlueField®-4 STX div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Introducing NVIDIA RTX PRO™ 4500 Blackwell Server Edition div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA DSX Air Boosts Time to Token With AI Factory Simulation div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Launches New Era of Space Computing div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
New NVIDIA Vera Rubin DSX AI Factory Reference Design div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 與 AWS 擴展完整堆疊合作夥伴關係 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Global Computer Makers to Introduce AI-First DGX Personal Systems div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
介紹 NVIDIA DGX B300 系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
觀看 NVIDIA 執行長黃仁勳主題演講 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
一切從這裡開始 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 執行長黃仁勳於 COMPUTEX 2025 發表主題演講 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
人工智慧工廠 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
黃仁勳與 Mark Zukergerg 探討人工智慧的重大進展 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
我們的故事 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
永續發展之路:人工智慧和加速運算可提升能源效率 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
可自行安排進度的人工智慧與資料科學職涯發展課程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
了解 NVIDIA 企業故事 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
秉持變革創新的理念,勇闖未知領域 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
TW
Sign In div.nav-header > div.nav-header-container > div.nav-tools-container > ul.nav-header-list |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
TW div.nav-tools-container > ul.nav-header-list > li#nv-cs-item-mob > a.nav-cs-link |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | /etc.clientlibs/clientlibs/granite/jquery.min.cee8557e877... line 118, col 45 |
| Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. | /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... line 258, col 20 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 91 | Allow: https://www.nvidia.com/llms.txt | Pattern should either be empty, start with "/" or "*" |
To appear in search results, crawlers need access to your app.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
2.06 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.06 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
858 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.133
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.85 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
29.49 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Each subpart has specific improvement strategies. Ideally, most of the LCP time should be spent on loading the resources, not within delays.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div#container-b97c27b406 > div.nv-img-as-bg > picture > img#image-container-b97c27b406 div#container-b97c27b406 > div.nv-img-as-bg > picture > img#image-container-b97c27b406 | /content/dam/en-zz/nvidiaweb/homepage/geforce/mfg/DLSS-4-... | 591.9 KiB | 271.0 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| nvidia.com/ | 917 ms |
| www.nvidia.com/ | 230 ms |
| www.nvidia.com/zh-tw/ | 0.0 ms |
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
@media screen and (min-width:1350px… div#container-b97c27b406 > div.general-container > div.aem-Grid > div.nv-separator | 0.133 |
TW
Sign In div.nav-header > div.nav-header-container > div.nav-tools-container > ul.nav-header-list | 0.000 |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.e... | 125.7 KiB | 119.7 KiB |
| 22.6 KiB | 19.7 KiB | |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-base.min.8... | 19.3 KiB | 18.8 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... | 135.7 KiB | 108.5 KiB |
| cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | 126.9 KiB | 67.3 KiB |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.b... | 59.2 KiB | 43.9 KiB |
| assets.adobedtm.com/5d4962a43b79/96fada676f0e/launch-95431b44ee81.min.js | 290.4 KiB | 38.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| www.nvidia.com/zh-tw/ | 1.1 s | 54 ms | 5.6 ms |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... | 766 ms | 499 ms | 16 ms |
| /etc.clientlibs/nvidiaweb/clientlibs/clientlib-site.min.b... | 715 ms | 221 ms | 9.4 ms |
| Unattributable | 621 ms | 27 ms | 0.0 ms |
| assets.adobedtm.com/5d4962a43b79/96fada676f0e/launch-95431b44ee81.min.js | 185 ms | 113 ms | 64 ms |
| cdn.cookielaw.org/scripttemplates/202601.1.0/otBannerSdk.js | 181 ms | 141 ms | 18 ms |
| use.typekit.net/vvg2vkh.js | 148 ms | 123 ms | 8.6 ms |
| /etc.clientlibs/clientlibs/granite/jquery.min.cee8557e877... | 65 ms | 48 ms | 6.0 ms |
| www.nvidia.com/akam/13/3f492ba | 52 ms | 49 ms | 1.4 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.3 s |
| Style & Layout | 994 ms |
| Other | 941 ms |
| Rendering | 291 ms |
| Script Parsing & Compilation | 146 ms |
| Garbage Collection | 94 ms |
| Parse HTML & CSS | 86 ms |
Many navigations are performed by going back to a previous page, or forwards again. The back/forward cache (bfcache) can speed up these return navigations. Learn more about the bfcache
Performance issues directly impact user engagement and conversion rates.
| Failure reason | Failure type |
|---|---|
| The page has an unload handler in the main frame. | Actionable |
Minifying JavaScript files can reduce payload sizes and script parse time. Learn how to minify JavaScript.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| images.nvidia.com/aem-dam/Solutions/ot-js/ot-custom.js | 10.8 KiB | 3.2 KiB |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
div#container-d0b41f76d3 > div.nv-img-as-bg > picture > img#image-container-d0b41f76d3 div#container-d0b41f76d3 > div.nv-img-as-bg > picture > img#image-container-d0b41f76d3 | /content/dam/en-zz/nvidiaweb/homepage/mfg/energy-emerald-... |
div#gtc26-skinny > div.nv-img-as-bg > picture > img#image-gtc26-skinny div#gtc26-skinny > div.nv-img-as-bg > picture > img#image-gtc26-skinny | /content/dam/en-zz/Solutions/homepage/v2/mfg/gtc26-web-sk... |
Make Autonomous Agents More Secure by Design With NVIDIA OpenShell div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Expands Open Models for Agentic and Physical AI div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
New Open Physical AI Data Factory Blueprint div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Build With OpenShell on NVIDIA DGX Spark and Station div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Dynamo 1.0 Powers Multi-Node Inference at Production Scale div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Adobe and NVIDIA Announce Strategic Collaboration div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
AI is a Five-Layer Cake div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 發表適用於代理 AI 之 Nemotron 3 模型系列 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX AI Garage: NVIDIA Igniting the Next Era of AI With Locally Accelerated Agen… div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Bringing Design, Engineering, and Manufacturing Into the AI Era div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Dassault Systèmes and NVIDIA partner to Build Next-Gen Industrial AI Platform div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Amazon Devices & Services 運用 NVIDIA 技術實現零接觸製造流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Expands Omniverse Blueprint for AI Factory Digital Twins div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Blackwell RTX PRO 可適用於各式工作站與伺服器 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 將推出實體人工智慧開放資料集,公開最大規模的合成資料集,推動實體人工智慧的開發 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Omniverse 將隨著實體人工智慧的採用浪潮,擴大生態系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 推出 fVDB ,以打造全球更大的數位模型 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 結合數位孿生與即時人工智慧,實現工業自動化 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
利用 Autodesk Maya 的 OpenUSD 增強功能簡化 3D 工作流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Blackwell 加快電腦輔助工程軟體的執行速度 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Earth-2 宣布新的 NIM div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
使用 NVIDIA ALCHEMI 徹底改變 AI 驅動的材料發現 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
透過 CUDA-Q 平台加速全球量子運算中心 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA AI 代工服務 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
宣布全新的加速量子經典運算系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
HPC 適用的 NVIDIA 框架 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
解決邊緣端的 HPC 問題 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Announcing NVIDIA DLSS 5 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA DLSS 4.5 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX. It's On. div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX Remix div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Frames Win Games div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
GeForce RTX 50 Series Graphics Cards and Desktops div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
GeForce RTX 50 系列筆記型電腦 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
The buzz from GDC 2026 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
RTX AI Garage: RTX-Powered Video Generation News div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Leading Automakers Adopt NVIDIA DRIVE Hyperion for L4 Vehicles div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Mercedes-Benz Unveils New S-Class Built on NVIDIA DRIVE AV div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
現代汽車集團建構 NVIDIA Blackwell AI 工廠 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 推出全方位自動駕駛車輛安全系統 Halos div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
DRIVE AI 系統偵測實驗室用以改善自駕車安全 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
全球汽車合作夥伴展示人工智慧的未來 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 運用 Omniverse Cloud API 大幅提升自動化系統開發 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
汽車製造商全新浪潮:採用 NVIDIA DRIVE 進行自動駕駛 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA IGX Thor™ Now Generally Available div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA IGX Thor 將 Blackwell 技術導入全新邊緣 AI 應用 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
The Ultimate Platform for Physical AI and Robotics div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Amazon Devices & Services 運用 NVIDIA 技術實現零接觸製造流程 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Hugging Face 和 NVIDIA 加速開源機器人 AI 的研究進展 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
推動 AI 機器人的新一波浪潮 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
使用 NVIDIA OSMO 擴充支援人工智慧機器人的開發工作負載 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
J&J 將打造採用人工智慧的數位和機器人手術平台 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
隆重介紹 Issac AMR div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA and Emerald AI Accelerate Power-Flexible AI Deployment div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Launches Vera CPU, Purpose-Built for Agentic AI div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Storage Industry Adopts NVIDIA BlueField®-4 STX div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Introducing NVIDIA RTX PRO™ 4500 Blackwell Server Edition div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA DSX Air Boosts Time to Token With AI Factory Simulation div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA Launches New Era of Space Computing div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
New NVIDIA Vera Rubin DSX AI Factory Reference Design div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
NVIDIA 與 AWS 擴展完整堆疊合作夥伴關係 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
Global Computer Makers to Introduce AI-First DGX Personal Systems div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
介紹 NVIDIA DGX B300 系統 div.cmp-teaser__image > div.cmp-image > a.cmp-image__link > img.cmp-image__image | data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Some ARIA parent roles must contain specific child roles to perform their intended accessibility functions. Learn more about roles and required children elements.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
TW
Sign In div.nav-header > div.nav-header-container > div.nav-tools-container > ul.nav-header-list |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
TW div.nav-tools-container > ul.nav-header-list > li#nv-cs-item > a.nav-cs-link |
Deprecated APIs will eventually be removed from the browser. Learn more about deprecated APIs.
Performance issues directly impact user engagement and conversion rates.
| Deprecation / Warning | Source |
|---|---|
| Unload event listeners are deprecated and will be removed. | /etc.clientlibs/clientlibs/granite/jquery.min.cee8557e877... line 118, col 45 |
| Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. | /etc.clientlibs/nvidiaweb/clientlibs/clientlib-webfoundat... line 258, col 20 |
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
If your robots.txt file is malformed, crawlers may not be able to understand how you want your website to be crawled or indexed. Learn more about robots.txt.
Performance issues directly impact user engagement and conversion rates.
| Line # | Content | Error |
|---|---|---|
| 91 | Allow: https://www.nvidia.com/llms.txt | Pattern should either be empty, start with "/" or "*" |
To appear in search results, crawlers need access to your app.
Send Feedback