/gpu-info

Primary LanguageJavaScriptMIT LicenseMIT

gpu-info

Provides nodejs with information about the system's GPUs.

Currently only supports gpu detection on Windows.

Usage

Returns an array of GPUs.

const gpuInfo = require('gpu-info');
gpuInfo().then(function(data) {
    console.log('GPUS:', data);
});