Skip to content
Snippets Groups Projects
Commit 0584702d authored by Pepping's avatar Pepping
Browse files

Updated the settings for ss fo the pre-tranpose

parent 31be2950
No related branches found
No related tags found
No related merge requests found
...@@ -261,9 +261,10 @@ if __name__ == "__main__": ...@@ -261,9 +261,10 @@ if __name__ == "__main__":
tc.append_log(3, '') tc.append_log(3, '')
ss_list = [] ss_list = []
for i in range(g_wr_chunksize): for h in range(g_wr_chunksize/c_interleave):
for j in range(g_rd_chunksize): for i in range(g_rd_chunksize):
ss_list.append(i + j*g_nof_weights) for j in range(c_interleave):
ss_list.append(h*c_interleave + i*g_nof_weights + j)
if c_ena_pre_transpose: if c_ena_pre_transpose:
ss.write_selects(ss_list) ss.write_selects(ss_list)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment