Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
quantized elemwise mul changed out type to float (#20926)
Browse files Browse the repository at this point in the history
  • Loading branch information
RafLit committed Mar 10, 2022
1 parent 32cef8e commit 3a08242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operator/quantization/quantized_elemwise_mul.cc
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ void QuantizedElemwiseMulOpForward(const nnvm::NodeAttrs &attrs,
}
}
} else {
typedef float_t out_type;
typedef float out_type;
auto *out_data = outputs[quantized_elemwise_mul::kOut].dptr<out_type>();
#if !defined(_MSC_VER)
#pragma omp simd
Expand Down

0 comments on commit 3a08242

Please sign in to comment.