WaveMultiMax

Description

Signature

T WaveMultiMax<T>(
    T value,
    vector<uint, 4> mask)
    where T : __BuiltinArithmeticType;

vector<T, N> WaveMultiMax<T, N:int>(
    vector<T, N> value,
    vector<uint, 4> mask)
    where T : __BuiltinArithmeticType;

matrix<T, N, M> WaveMultiMax<T, N:int, M:int>(
    matrix<T, N, M> value,
    vector<uint, 4> mask)
    where T : __BuiltinArithmeticType;

Generic Parameters

T: __BuiltinArithmeticType

N : int

M : int

Parameters

value : T

mask : vector<uint, 4>

value : vector<T, N>

value : matrix<T, N, M>

Availability and Requirements

Defined for the following targets:

glsl

Available in all stages.

cuda

Available in all stages.

spirv

Available in all stages.

Requires capabilities: spvGroupNonUniformBallot, spvGroupNonUniformArithmetic, spvGroupNonUniformPartitionedNV.