diff --git a/applications/aartfaac/designs/aartfaac_bn_sdo/src/python/gen_hex_files_ss_parallel_sb_16b.py b/applications/aartfaac/designs/aartfaac_bn_sdo/src/python/gen_hex_files_ss_parallel_sb_16b.py
index 4924c7fc0125a8f1357f5d86ff3937b78ba40948..4ef91c1822360a726aab5b57d750d36896e2a3cc 100644
--- a/applications/aartfaac/designs/aartfaac_bn_sdo/src/python/gen_hex_files_ss_parallel_sb_16b.py
+++ b/applications/aartfaac/designs/aartfaac_bn_sdo/src/python/gen_hex_files_ss_parallel_sb_16b.py
@@ -50,7 +50,7 @@ HEX_SS_WIDE_MEM_DEPTH = 1024 # size = 864 words each (matches output block size)
 HEX_SS_WIDE_FILE_PREFIX = "../hex/ss_parallel_sb_16b_ss_wide_"
 
 HEX_REORDER_OUT_MEM_WIDTH = 8 # Actually 4 bits but HEX files require byte boundaries
-HEX_REORDER_OUT_MEM_DEPTH = 1024 # 864 cycles * 4 bits to encode the 12 inputs on each word = 864 regs
+HEX_REORDER_OUT_MEM_DEPTH = 1024 # 864 cycles * 4 bits to encode the 2 inputs on each word = 864 regs
 HEX_REORDER_OUT_FILE_NAME = "../hex/ss_parallel_sb_16b_reorder_out.hex"
 
 # This is not a TC but we must provide a TC to create the object
@@ -65,9 +65,6 @@ ss = pi_ss_parallel.PiSsParallel(dummy_tc, dummy_io, NOF_IN, NOF_INTERNALS, NOT_
 # ========================
 # Create the input matrix:
 # ========================
-# stream  0) [ ( 0,0), ( 0,1), .. , ( 0, 70), ( 0,71) ]
-# ..
-# stream 11) [ (11,0), (11,1), .. , (11, 70), (11,71) ]
 din = ss.create_Din()
 
 # =========================