A hardware specification.

interface HardwareSpec {
    id?: string;
    name?: string;
    num_nodes?: number;
    rev?: string;
}

Properties

id?: string

The id of the hardware specification. One, and only one, of id or name must be set.

name?: string

The name of the hardware specification. One, and only one, of id or name must be set.

num_nodes?: number

The number of nodes applied to a computation.

rev?: string

The revision of the hardware specification if id is used.