mirror of
https://github.com/ROCm/jax.git
synced 2025-04-19 05:16:06 +00:00
change ending tick mark style
This commit is contained in:
parent
491fcbb202
commit
77a023df48
@ -1197,11 +1197,11 @@ def cumprod(operand: Array, axis: int) -> Array:
|
||||
return cumprod_p.bind(operand, axis=int(axis))
|
||||
|
||||
def cummax(operand: Array, axis: int) -> Array:
|
||||
"""Computes a cumulative maximum along `axis'."""
|
||||
"""Computes a cumulative maximum along `axis`."""
|
||||
return cummax_p.bind(operand, axis=int(axis))
|
||||
|
||||
def cummin(operand: Array, axis: int) -> Array:
|
||||
"""Computes a cumulative minimum along `axis'."""
|
||||
"""Computes a cumulative minimum along `axis`."""
|
||||
return cummin_p.bind(operand, axis=int(axis))
|
||||
|
||||
def sort(operand: Union[Array, Sequence[Array]], dimension: int = -1,
|
||||
|
Loading…
x
Reference in New Issue
Block a user