# maxComputeWorkGroupSize

> The largest total number of invocations in a single local work group that can be dispatched to a compute shader (Read Only).

## Definition

* **Type:** Property
* **Namespace:** [UnityEngine](/engine/6000.0/script-reference/unityengine.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public static int maxComputeWorkGroupSize { get; }
```

### Remarks

The product of maxComputeWorkgroupSizeX, maxComputeWorkgroupSizeY and maxComputeWorkgroupSizeZ cannot exceed this number on the current device. Note that this is the theoretical maximum. The actual limit depends on the shader complexity, so it can be lower.

Additional Resources:[SystemInfo.maxComputeWorkGroupSizeX](/engine/6000.0/script-reference/unityengine/systeminfo/maxcomputeworkgroupsizex.md) [SystemInfo.maxComputeWorkGroupSizeY](/engine/6000.0/script-reference/unityengine/systeminfo/maxcomputeworkgroupsizey.md) [SystemInfo.maxComputeWorkGroupSizeZ](/engine/6000.0/script-reference/unityengine/systeminfo/maxcomputeworkgroupsizez.md)
