warp.capture_while#

warp.capture_while(condition, while_body, stream=None, **kwargs)[source]#

Create a dynamic loop based on a condition.

The condition value is retrieved from the first element of the condition array.

The while_body callback is responsible for updating the condition value so the loop can terminate.

This function is particularly useful with CUDA graphs, but can be used without graph capture as well. CUDA 12.4+ is required for CUDA graph conditional nodes. During APIC recording (all CPU captures and CUDA captures with apic=True), the loop body must be a callback; passing a Graph object is not yet supported. CUDA capture with apic=False supports either form.

Parameters:
  • condition (warp.array[warp.int32]) – Warp array holding the condition value.

  • while_body (Callable | Graph) – A callback function or Graph to execute while the loop condition is True.

  • stream (Stream | None) – The CUDA stream where the condition was written. If None, use the current stream on the device where condition resides.

Any additional keyword arguments are forwarded to the callback function.