mirror of
https://github.com/logos-storage/das-research.git
synced 2026-01-03 05:33:10 +00:00
fixup results file name
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
This commit is contained in:
parent
2add749fb5
commit
04b43b67d1
@ -28,7 +28,7 @@ class Shape:
|
||||
def __repr__(self):
|
||||
"""Returns a printable representation of the shape"""
|
||||
shastr = ""
|
||||
shastr += "-bsrn-"+str(self.blockSizeR)
|
||||
shastr += "bsrn-"+str(self.blockSizeR)
|
||||
shastr += "-bsrk-"+str(self.blockSizeRK)
|
||||
shastr += "-bscn-"+str(self.blockSizeC)
|
||||
shastr += "-bsck-"+str(self.blockSizeCK)
|
||||
|
||||
@ -63,7 +63,7 @@ class Visualizor:
|
||||
def __get_attrbs__(self, result):
|
||||
text = str(result.shape).split("-")
|
||||
d = dict()
|
||||
for i in range(1, len(text), 2):
|
||||
for i in range(0, len(text), 2):
|
||||
d[text[i]] = text[i + 1]
|
||||
return d
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user