--- layout: stdlib-reference --- # WaveMultiPrefixExclusiveMax ## Description ## Signature
T WaveMultiPrefixExclusiveMax<T>(
    T value,
    vector<uint, 4> mask)
    where T : __BuiltinArithmeticType;

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

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

## Generic Parameters #### T: [\_\_BuiltinArithmeticType](../interfaces/0_builtinarithmetictype-029j/index.html) #### N : int #### M : int ## Parameters #### value : [T](wavemultiprefixexclusivemax-049fo.html#typeparam-T) #### mask : [vector](../types/vector/index.html)\ #### value : [vector](../types/vector/index.html)\<[T](../types/vector/index.html#typeparam-T), [N](../types/vector/index.html#decl-N)\> #### value : [matrix](../types/matrix/index.html)\<[T](../types/matrix/t-0.html), [N](../types/matrix/index.html#decl-N), [M](../types/matrix/index.html#decl-M)\> ## Availability and Requirements Defined for the following targets: #### glsl Available in all stages. #### spirv Available in all stages. Requires capabilities: `spvGroupNonUniformBallot`, `spvGroupNonUniformArithmetic`, `spvGroupNonUniformPartitionedNV`.