# WorkgroupSize

`import { WorkgroupSize } from "destack:compute";`

Workgroup size for one kernel dispatch.

```ds title="WorkgroupSize"
export struct WorkgroupSize {
    x: uint32;
    y: uint32;
    z: uint32;
}
```

[language/library/src/compute/workgroup.ds:14:23](https://github.com/destack-sh/destack/blob/main/language/library/src/compute/workgroup.ds#L14-L23)

## Members

### `x: uint32`

X axis.

### `y: uint32`

Y axis.

### `z: uint32`

Z axis.
