We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b991dcb commit 8ad15f3Copy full SHA for 8ad15f3
backends/cadence/hifi/operators/op_quantized_relu_out.cpp
@@ -26,8 +26,8 @@ void quantized_relu_per_tensor_out(
26
const int64_t out_multiplier,
27
const int64_t out_shift,
28
Tensor& output) {
29
- const int32_t _out_multiplier = static_cast<int32_t>(out_multiplier);
30
- const int32_t _out_shift = static_cast<int32_t>(out_shift);
+ const int32_t _out_multiplier = static_cast<int32_t>(out_multiplier);
+ const int32_t _out_shift = static_cast<int32_t>(out_shift);
31
32
if (input.scalar_type() == executorch::aten::ScalarType::Byte) {
33
const uint8_t _in_zero_point = static_cast<uint8_t>(in_zero_point);
0 commit comments