Skip to content

Commit

Permalink
Iter4: Address feedback comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sdasgup3 committed Nov 13, 2023
1 parent 772da16 commit 4e6768b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,7 @@ For quantized types, performs
`dequantize_batch_norm_grad_or_training_quantize(lambda operand, scale, mean,
variance, grad_output: batch_norm_grad(operand, scale, mean, variance,
grad_output, epsilon, feature_index), operand, scale, mean, variance,
grad_output, type(result))`.
grad_output, type(grad_operand), type(grad_scale), type(feature_index))`.

#### Inputs

Expand Down Expand Up @@ -1252,7 +1252,7 @@ def batch_norm_training(operand, scale, offset, epsilon, feature_index):
For quantized types, performs
`dequantize_batch_norm_grad_or_training_quantize(lambda operand, scale, offset:
batch_norm_training(operand, scale, offset, epsilon, feature_index), operand,
scale, offset, type(result))`.
scale, offset, type(output), type(batch_mean), type(batch_var))`.

#### Inputs

Expand Down

0 comments on commit 4e6768b

Please sign in to comment.