fuse-archive now no longer shows up when unnecessary
This commit is contained in:
parent
58a5cc7f8d
commit
fc3c74cbe8
3 changed files with 20 additions and 9 deletions
|
@ -6,16 +6,10 @@ data = [
|
||||||
backgroundColor: 'rgb(255, 99, 132)',
|
backgroundColor: 'rgb(255, 99, 132)',
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
label: 'fuse-archive (tar)',
|
|
||||||
data: [0.0, 0.0, 0.0, 0.0, 1.4119999999999998e-06, 2.144e-06],
|
|
||||||
backgroundColor: 'rgb(75, 192, 192)',
|
|
||||||
},
|
|
||||||
|
|
||||||
{
|
{
|
||||||
label: 'Btrfs',
|
label: 'Btrfs',
|
||||||
data: [0.00551523, 0.09113626, 0.09405722, 0.0009497709999999999, 9.82e-07, 1.242e-06],
|
data: [0.00551523, 0.09113626, 0.09405722, 0.0009497709999999999, 9.82e-07, 1.242e-06],
|
||||||
backgroundColor: 'rgb(54, 162, 235)',
|
backgroundColor: 'rgb(75, 192, 192)',
|
||||||
},
|
},
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
|
@ -51,11 +51,16 @@ class HelperFunctions:
|
||||||
return float(time)
|
return float(time)
|
||||||
|
|
||||||
def get_data(single_files_index: int, bulk_test_name: str):
|
def get_data(single_files_index: int, bulk_test_name: str):
|
||||||
|
skip_fuse_archive_tar = False
|
||||||
|
if bulk_test_name == 'bulk_random_read_latency':
|
||||||
|
skip_fuse_archive_tar = True
|
||||||
# format: { 'labels': ['btrfs'], 'btrfs': [9, 8, 4, 6]}
|
# format: { 'labels': ['btrfs'], 'btrfs': [9, 8, 4, 6]}
|
||||||
data = {'labels': []}
|
data = {'labels': []}
|
||||||
with open('assets/benchmarking-dwarfs/data/benchmark-data.csv', 'rt') as f:
|
with open('assets/benchmarking-dwarfs/data/benchmark-data.csv', 'rt') as f:
|
||||||
for line in csv.reader(f):
|
for line in csv.reader(f):
|
||||||
fs = HelperFunctions.get_fs(line[0])
|
fs = HelperFunctions.get_fs(line[0])
|
||||||
|
if fs == 'fuse-archive (tar)' and skip_fuse_archive_tar:
|
||||||
|
continue
|
||||||
label = HelperFunctions.get_label(line[1])
|
label = HelperFunctions.get_label(line[1])
|
||||||
data['labels'].append(label) if label not in data[
|
data['labels'].append(label) if label not in data[
|
||||||
'labels'
|
'labels'
|
||||||
|
@ -108,6 +113,7 @@ def get_data(single_files_index: int, bulk_test_name: str):
|
||||||
] else False
|
] else False
|
||||||
|
|
||||||
for item in line[3:]:
|
for item in line[3:]:
|
||||||
|
# FIXME: this breaks if the bulk time is a larger unit than the single file time
|
||||||
if largest_time_unit == 's':
|
if largest_time_unit == 's':
|
||||||
break
|
break
|
||||||
if item.endswith('ms'):
|
if item.endswith('ms'):
|
||||||
|
@ -124,10 +130,20 @@ def get_data(single_files_index: int, bulk_test_name: str):
|
||||||
largest_time_unit = 's'
|
largest_time_unit = 's'
|
||||||
break
|
break
|
||||||
|
|
||||||
|
# on the single file tests fuse-archive fails, and it's so small is shows as 0 here anyways, so might as well skip it
|
||||||
|
if fs == 'fuse-archive (tar)' and largest_time_unit == 's' and skip_fuse_archive_tar:
|
||||||
|
continue
|
||||||
|
|
||||||
for i in range(len(line[3:])):
|
for i in range(len(line[3:])):
|
||||||
line[i + 3] = HelperFunctions.convert_time(item, largest_time_unit)
|
line[i + 3] = HelperFunctions.convert_time(item, largest_time_unit)
|
||||||
|
|
||||||
|
try:
|
||||||
data[fs].append(sum(line[3:]) / len(line[3:]))
|
data[fs].append(sum(line[3:]) / len(line[3:]))
|
||||||
|
except KeyError:
|
||||||
|
data[fs] = [0, 0, 0, 0]
|
||||||
|
data[fs].append(sum(line[3:]) / len(line[3:]))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return (data, largest_time_unit)
|
return (data, largest_time_unit)
|
||||||
|
|
||||||
|
|
|
@ -120,6 +120,7 @@ img {
|
||||||
}
|
}
|
||||||
|
|
||||||
.chart {
|
.chart {
|
||||||
|
min-width: 600px;
|
||||||
max-width: 50vw;
|
max-width: 50vw;
|
||||||
max-height: 50vh;
|
max-height: 50vh;
|
||||||
}
|
}
|
Loading…
Reference in a new issue