aboutsummaryrefslogtreecommitdiff
path: root/src/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime')
-rw-r--r--src/runtime/CL/functions/CLLSTMLayerQuantized.cpp4
-rw-r--r--src/runtime/NEON/functions/NELSTMLayerQuantized.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/runtime/CL/functions/CLLSTMLayerQuantized.cpp b/src/runtime/CL/functions/CLLSTMLayerQuantized.cpp
index e0006a77d0..da19cc1cc3 100644
--- a/src/runtime/CL/functions/CLLSTMLayerQuantized.cpp
+++ b/src/runtime/CL/functions/CLLSTMLayerQuantized.cpp
@@ -345,7 +345,7 @@ void CLLSTMLayerQuantized::run()
_tanh_output_state.run();
_mul_output_state_tmp_output_gate.run();
- // Requantize output state from QSYMM16 to QASYMM16
+ // Requantize output state from QSYMM16 to QASYMM8
_dequantize.run();
_quantize.run();
}
@@ -394,4 +394,4 @@ void CLLSTMLayerQuantized::prepare()
}
}
-} // namespace arm_compute \ No newline at end of file
+} // namespace arm_compute
diff --git a/src/runtime/NEON/functions/NELSTMLayerQuantized.cpp b/src/runtime/NEON/functions/NELSTMLayerQuantized.cpp
index 6cfa9887ff..96c776141a 100644
--- a/src/runtime/NEON/functions/NELSTMLayerQuantized.cpp
+++ b/src/runtime/NEON/functions/NELSTMLayerQuantized.cpp
@@ -324,7 +324,7 @@ void NELSTMLayerQuantized::run()
_tanh_output_state.run();
_mul3.run();
- // Requantize output state from QSYMM16 to QASYMM16
+ // Requantize output state from QSYMM16 to QASYMM8
_dequantize.run();
_quantize.run();
}