We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d43a84e commit cfeae66Copy full SHA for cfeae66
1 file changed
scripts/benchmark_graphblas-sharp.py
@@ -27,19 +27,3 @@
27
28
#Copying results for uploading
29
subprocess.call(f'rsync -a {dotnet_artifacts}/ {artifacts}', shell=True)
30
-
31
-#Parsing matrix names in jsons to draw charts(FullName = matrix.mtx)
32
-json_files = [file for file in os.listdir(artifacts) if file.endswith(".json")]
33
34
-for file in json_files:
35
- with open(artifacts / file, "r+") as file:
36
- data = json.load(file)
37
- for benchmark in data["Benchmarks"]:
38
- name_field = benchmark["FullName"]
39
- matrix_name = name_field.split(":")[-1][:-1].strip()
40
- print(matrix_name)
41
- benchmark["FullName"] = matrix_name
42
43
- file.seek(0)
44
- json.dump(data, file)
45
- file.truncate()
0 commit comments