GPUAdapterInfoLimited availabilityThis feature is not Baseline because it does not work in some of the most widely-used browsers.Learn moreSee full compatibilityReport feedbackExperimental: This is an experimental technologyCheck the Browser compatibility table carefully before using this in production. Secure context: This feature is available only in secure contexts (HTTPS), in some or all supporting browsers. Note: This feature is available in Web Workers. The GPUAdapterInfo interface of the WebGPU API contains identifying information about a GPUAdapter. A GPUAdapterInfo object instance is retrieved using the GPUAdapter.info property.Instance properties architecture Experimental Read only The name of the family or class of GPUs the adapter belongs to. Returns an empty string if it is not available. description Experimental Read only A human-readable string describing the adapter. Returns an empty string if it is not available. device Experimental Read only A vendor-specific identifier for the adapter. Returns an empty string if it is not available. vendor Experimental Read only The name of the adapter vendor. Returns an empty string if it is not available. Examplesjsconst adapter = await navigator.gpu.requestAdapter(); if (!adapter) { throw Error("Couldn't request WebGPU adapter."); } const adapterInfo = adapter.info; console.log(adapterInfo.vendor); console.log(adapterInfo.architecture); SpecificationsSpecificationWebGPU # gpu-adapterinfoBrowser compatibilitydesktopmobileserverChromeEdgeFirefoxOperaSafariChrome AndroidFirefox for AndroidOpera AndroidSafari on iOSSamsung InternetWebView AndroidWebView on iOSDenoGPUAdapterInfoExperimentalChrome – Full supportChrome113footnoteToggle historyEdge – Full supportEdge113footnoteToggle historyFirefox – Preview supportFirefoxNightlyToggle historyOpera – Full supportOpera99footnoteToggle historySafari – Preview supportSafariTPToggle historyChrome Android – Full supportChrome Android121Toggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – Full supportOpera Android81Toggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – Full supportSamsung Internet25.0Toggle historyWebView Android – Full supportWebView Android121Toggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – No supportDeno1.39disabledmoreToggle historyarchitectureExperimentalChrome – Full supportChrome113footnoteToggle historyEdge – Full supportEdge113footnoteToggle historyFirefox – Preview supportFirefoxNightlyToggle historyOpera – Full supportOpera99footnoteToggle historySafari – Preview supportSafariTPToggle historyChrome Android – Full supportChrome Android121Toggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – Full supportOpera Android81Toggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – Full supportSamsung Internet25.0Toggle historyWebView Android – Full supportWebView Android121Toggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – No supportDenoNoToggle historydescriptionExperimentalChrome – Full supportChrome113footnoteToggle historyEdge – Full supportEdge113footnoteToggle historyFirefox – Preview supportFirefoxNightlyToggle historyOpera – Full supportOpera99footnoteToggle historySafari – Preview supportSafariTPToggle historyChrome Android – Full supportChrome Android121Toggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – Full supportOpera Android81Toggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – Full supportSamsung Internet25.0Toggle historyWebView Android – Full supportWebView Android121Toggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – No supportDeno1.39disabledToggle historydeviceExperimentalChrome – Full supportChrome113footnoteToggle historyEdge – Full supportEdge113footnoteToggle historyFirefox – Preview supportFirefoxNightlyToggle historyOpera – Full supportOpera99footnoteToggle historySafari – Preview supportSafariTPToggle historyChrome Android – Full supportChrome Android121Toggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – Full supportOpera Android81Toggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – Full supportSamsung Internet25.0Toggle historyWebView Android – Full supportWebView Android121Toggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – No supportDeno1.39disabledToggle historysubgroupMaxSizeExperimentalChrome – Preview supportChrome134footnoteToggle historyEdge – Preview supportEdge134footnoteToggle historyFirefox – No supportFirefoxNoToggle historyOpera – No supportOperaNoToggle historySafari – No supportSafariNoToggle historyChrome Android – Preview supportChrome Android134footnoteToggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – No supportOpera AndroidNoToggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – No supportSamsung InternetNoToggle historyWebView Android – Preview supportWebView Android134footnoteToggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – Support unknownDeno?Toggle historysubgroupMinSizeExperimentalChrome – Preview supportChrome134footnoteToggle historyEdge – Preview supportEdge134footnoteToggle historyFirefox – No supportFirefoxNoToggle historyOpera – No supportOperaNoToggle historySafari – No supportSafariNoToggle historyChrome Android – Preview supportChrome Android134footnoteToggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – No supportOpera AndroidNoToggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – No supportSamsung InternetNoToggle historyWebView Android – Preview supportWebView Android134footnoteToggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – Support unknownDeno?Toggle historyvendorExperimentalChrome – Full supportChrome113footnoteToggle historyEdge – Full supportEdge113footnoteToggle historyFirefox – Preview supportFirefoxNightlyToggle historyOpera – Full supportOpera99footnoteToggle historySafari – Preview supportSafariTPToggle historyChrome Android – Full supportChrome Android121Toggle historyFirefox for Android – No supportFirefox for AndroidNoToggle historyOpera Android – Full supportOpera Android81Toggle historySafari on iOS – No supportSafari on iOSNoToggle historySamsung Internet – Full supportSamsung Internet25.0Toggle historyWebView Android – Full supportWebView Android121Toggle historyWebView on iOS – No supportWebView on iOSNoToggle historyDeno – No supportDeno1.39disabledToggle historySee also GPUAdapter.info The WebGPU API