Skip to content

Commit

Permalink
Implement reduce_sum/prod/max/min scaled translation rules.
Browse files Browse the repository at this point in the history
  • Loading branch information
balancap committed Nov 21, 2023
1 parent 642a58e commit f214af2
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions jax_scaled_arithmetics/lax/scaled_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,3 +107,19 @@ def scaled_dot_general(
/ contracting_rescale
)
return ScaledArray(output_data, output_scale)


def scaled_reduce_sum():
pass


def scaled_reduce_prod():
pass


def scaled_reduce_max():
pass


def scaled_reduce_min():
pass

0 comments on commit f214af2

Please sign in to comment.