Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudMlV1__AcceleratorConfig

import type { GoogleCloudMlV1__AcceleratorConfig } from "https://googleapis.deno.dev/v1/ml:v1.ts";

Represents a hardware accelerator request config. Note that the AcceleratorConfig can be used in both Jobs and Versions. Learn more about accelerators for training and accelerators for online prediction.

interface GoogleCloudMlV1__AcceleratorConfig {
count?: bigint;
type?:
| "ACCELERATOR_TYPE_UNSPECIFIED"
| "NVIDIA_TESLA_K80"
| "NVIDIA_TESLA_P100"
| "NVIDIA_TESLA_V100"
| "NVIDIA_TESLA_P4"
| "NVIDIA_TESLA_T4"
| "NVIDIA_TESLA_A100"
| "TPU_V2"
| "TPU_V3"
| "TPU_V2_POD"
| "TPU_V3_POD"
| "TPU_V4_POD";
}

§Properties

§
count?: bigint
[src]

The number of accelerators to attach to each machine running the job.

§
type?: "ACCELERATOR_TYPE_UNSPECIFIED" | "NVIDIA_TESLA_K80" | "NVIDIA_TESLA_P100" | "NVIDIA_TESLA_V100" | "NVIDIA_TESLA_P4" | "NVIDIA_TESLA_T4" | "NVIDIA_TESLA_A100" | "TPU_V2" | "TPU_V3" | "TPU_V2_POD" | "TPU_V3_POD" | "TPU_V4_POD"
[src]

The type of accelerator to use.