From ebf51999ff265a254407e7fb044bfe82d8a2b8a4 Mon Sep 17 00:00:00 2001 From: pmilenkovicTT Date: Wed, 29 Jan 2025 09:17:49 +0000 Subject: [PATCH] Reformatted comments --- common/inc/sfpu/ckernel_sfpu_sub_int32.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/inc/sfpu/ckernel_sfpu_sub_int32.h b/common/inc/sfpu/ckernel_sfpu_sub_int32.h index 4dd4440..38f5eca 100644 --- a/common/inc/sfpu/ckernel_sfpu_sub_int32.h +++ b/common/inc/sfpu/ckernel_sfpu_sub_int32.h @@ -28,15 +28,15 @@ inline void _sub_int32_(const uint dst_offset) { // Output is int32 #pragma GCC unroll 8 for (int d = 0; d < ITERATIONS; d++) { - // operand B - int32 + // Operand B - int32 TT_SFPLOAD(1, sfpload_instr_mod, 3, dst_offset*64); - // invert B's bits, then add 1 to switch the sign + // Invert B's bits, then add 1 to invert the sign TTI_SFPNOT(0, 1, 0, 0); TT_SFPLOADI(1, sfpload_instr_mod, 1); TTI_SFPIADD(0, 1, 0, 4); TTI_NOP; - // load A, then calculate A + (-B) + // Load A, then calculate A + (-B) TTI_SFPLOAD(1, sfpload_instr_mod, 3, 0); TTI_SFPIADD(0, 1, 0, 4); TTI_NOP;