wgblas
    Preparing search index...

    Function gpuName

    • Returns the GPU device name from the WebGPU adapter info. Must be called after init().

      Returns { description: string; device: string }

      import { init, gpuName } from "wgblas";
      await init();
      const { description, device } = gpuName();
      console.log("description:", description, "device:", device);