Hi,
I experience an issue when I try scale-sim with the argument -i gemm . The tool pops an assertion which mentions that the size per row in the csv file should be at least 4. However in the documentation example for MNK input format seem to be exactly 4 parameters (Layer Name, M, N, K). Am I missing something here?
My csv has the same format as the example in README of scale-sim for GEMM operations.
Problem solved: In the last line of the csv, a comma needed to find all the elements within the row. I assume this is happened because of the elems = row.split(',')[:-1] in the load_array_gemms.
Hi, I experience an issue when I try scale-sim with the argument
-i gemm
. The tool pops an assertion which mentions that the size per row in the csv file should be at least 4. However in the documentation example for MNK input format seem to be exactly 4 parameters (Layer Name, M, N, K). Am I missing something here?My csv has the same format as the example in README of scale-sim for GEMM operations.
Thanks in advance, Kostas.