Skip to content

Commit

Permalink
fix typo of quantized README.md (#50681)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: #50681

Reviewed By: ngimel

Differential Revision: D25978905

Pulled By: jerryzh168

fbshipit-source-id: e8bff59a7a6b2b6f79273c010c32480db0997e7d
  • Loading branch information
XiaobingSuper authored and facebook-github-bot committed Jan 21, 2021
1 parent 7fdc6a2 commit c945a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aten/src/ATen/native/quantized/README.md
Expand Up @@ -21,7 +21,7 @@ Tensor quantized_xand(Tensor qa, Tensor qb) {
// Some type checks for qa and qb should be here...
Tensor qc;
double scale = qa.q_scale();
long zero_point qa.q_zero_point();
int64_t zero_point = qa.q_zero_point();

auto iter = TensorIterator::binary_op(qc, qa, qb);

Expand Down

0 comments on commit c945a5b

Please sign in to comment.