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
Branches
Tags
No related merge requests found
......@@ -261,9 +261,10 @@ if __name__ == "__main__":
tc.append_log(3, '')
ss_list = []
for i in range(g_wr_chunksize):
for j in range(g_rd_chunksize):
ss_list.append(i + j*g_nof_weights)
for h in range(g_wr_chunksize/c_interleave):
for i in range(g_rd_chunksize):
for j in range(c_interleave):
ss_list.append(h*c_interleave + i*g_nof_weights + j)
if c_ena_pre_transpose:
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