asc.language.tile.binary_ops.maximum

asc.language.tile.binary_ops.maximum(input: Tile | PlainValue | int | float, other: Tile | PlainValue | int | float) Tile

Computes the element-wise maximum of input and other.

Parameters:
  • input – the left operand (tile or scalar)

  • other – the right operand (tile or scalar)

Returns:

the result of maximum

Return type:

Tile

Note

At least one of input operands must be Tile.