Options
All
  • Public
  • Public/Protected
  • All
Menu

Class WgScanAlgorithm

Implements the scan (a.k.a. prefix-sum) algorithm on WebGPU The scan works per workgroup, so the results of each pass have to be reduced and added. (this WgAlgorithm also find the largest (max) value in the input data)

See WgCompScanShader for a thorough explanation with an example.

See the following link under Section 39.2.4 - "Arrays of Arbitrary Size" https://developer.nvidia.com/gpugems/gpugems3/part-vi-gpu-computing/chapter-39-parallel-prefix-sum-scan-cuda

Hierarchy

Index

Constructors

constructor

Properties

Protected Readonly context

context: WgContext

Private Readonly output

output: WgBuffer<Uint32Array>

Private Readonly output_max

output_max: WgBuffer<Uint32Array>

Protected Readonly passes

passes: WgPass[]

Methods

Protected _run

  • _run(passes: WgPass[], debug?: undefined | string): Promise<void>

readMax

  • readMax(): Promise<number>

readScan

  • readScan(): Promise<Uint32Array>

run

  • run(): Promise<void>

Static Private _createPasses

Static createPasses

  • Starts a recursive function that creates all necessary passes for a scan, until the data is reduced to a single value. On the way back in the stack, the addition is performed

    Parameters

    • context: WgContext

      The WebGPU context

    • inputData: WgBuffer<Uint32Array>

      The input data to perform a scan (and max) on

    • Optional finalOutputMax: WgBuffer<Uint32Array>

      A buffer where the max value will be stored. If not provided, one will be created automatically and discarded afterwards

    Returns WgPass[]

Generated using TypeDoc