# DispatchIndirect

> Execute a compute shader.

## Definition

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

## DispatchIndirect(int, ComputeBuffer, uint)

Execute a compute shader.

```csharp
public void DispatchIndirect(int kernelIndex, ComputeBuffer argsBuffer, uint argsOffset)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Which kernel to execute. A single compute shader asset can have multiple kernel entry points.**** (\[ComputeBuffer]\(/engine/6000.3/script-reference/unityengine/computebuffer)): Buffer with dispatch arguments.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The byte offset into the buffer, where the draw arguments start.

### Remarks

This function "runs" the compute shader, with the given work size read directly from the GPU. Typical use case is generating arbitrary amount of data from a [ComputeShader](/engine/6000.3/script-reference/unityengine/computeshader.md) and then dispatching that, without requiring a readback to the CPU.

Buffer with arguments, `argsBuffer`, has to have three integer numbers at given `argsOffset` offset: number of work groups in X dimension, number of work groups in Y dimension,  number of work groups in Z dimension.

Within each work group, a number of shader invocations ("threads") are done. The work group size is specified in the compute shader itself (using "numthreads" HLSL attribute), and the total amount of compute shader invocations is thus group count multiplied by the thread group size. Work group size can be queried using [ComputeShader.GetKernelThreadGroupSizes](/engine/6000.3/script-reference/unityengine/computeshader/getkernelthreadgroupsizes.md) function.

This very much maps to Direct3D11 DispatchIndirect, OpenGL glDispatchComputeIndirect and equivalent functions on other graphics APIs.

Additional Resources: [ComputeShader.Dispatch](/engine/6000.3/script-reference/unityengine/computeshader/dispatch.md), [Graphics.DrawProceduralIndirect](/engine/6000.3/script-reference/unityengine/graphics/drawproceduralindirect.md), [ComputeBuffer.CopyCount](/engine/6000.3/script-reference/unityengine/computebuffer/copycount.md), [Compute Shaders](/engine/6000.3/manual/materials-and-shaders/shaders/writing-custom/class-compute-shader.md).

## DispatchIndirect(int, GraphicsBuffer, uint)

Execute a compute shader.

```csharp
public void DispatchIndirect(int kernelIndex, GraphicsBuffer argsBuffer, uint argsOffset)
```

### Parameters

**** (\[int]\(https\://learn.microsoft.com/dotnet/api/system.int32)): Which kernel to execute. A single compute shader asset can have multiple kernel entry points.**** (\[GraphicsBuffer]\(/engine/6000.3/script-reference/unityengine/graphicsbuffer)): Buffer with dispatch arguments.**** (\[uint]\(https\://learn.microsoft.com/dotnet/api/system.uint32)): The byte offset into the buffer, where the draw arguments start.

### Remarks

This function "runs" the compute shader, with the given work size read directly from the GPU. Typical use case is generating arbitrary amount of data from a [ComputeShader](/engine/6000.3/script-reference/unityengine/computeshader.md) and then dispatching that, without requiring a readback to the CPU.

Buffer with arguments, `argsBuffer`, has to have three integer numbers at given `argsOffset` offset: number of work groups in X dimension, number of work groups in Y dimension,  number of work groups in Z dimension.

Within each work group, a number of shader invocations ("threads") are done. The work group size is specified in the compute shader itself (using "numthreads" HLSL attribute), and the total amount of compute shader invocations is thus group count multiplied by the thread group size. Work group size can be queried using [ComputeShader.GetKernelThreadGroupSizes](/engine/6000.3/script-reference/unityengine/computeshader/getkernelthreadgroupsizes.md) function.

This very much maps to Direct3D11 DispatchIndirect, OpenGL glDispatchComputeIndirect and equivalent functions on other graphics APIs.

Additional Resources: [ComputeShader.Dispatch](/engine/6000.3/script-reference/unityengine/computeshader/dispatch.md), [Graphics.DrawProceduralIndirect](/engine/6000.3/script-reference/unityengine/graphics/drawproceduralindirect.md), [ComputeBuffer.CopyCount](/engine/6000.3/script-reference/unityengine/computebuffer/copycount.md), [Compute Shaders](/engine/6000.3/manual/materials-and-shaders/shaders/writing-custom/class-compute-shader.md).
