Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo of quantized README.md #50681

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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