@huggingface/transformers
Version:
State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!
18 lines • 425 B
TypeScript
/**
* The list of devices supported by Transformers.js
*/
export const DEVICE_TYPES: Readonly<{
auto: "auto";
gpu: "gpu";
cpu: "cpu";
wasm: "wasm";
webgpu: "webgpu";
cuda: "cuda";
dml: "dml";
webnn: "webnn";
'webnn-npu': "webnn-npu";
'webnn-gpu': "webnn-gpu";
'webnn-cpu': "webnn-cpu";
}>;
export type DeviceType = keyof typeof DEVICE_TYPES;
//# sourceMappingURL=devices.d.ts.map