Skip to content

Commit 7f99b82

Browse files
aobolenskallnes
andauthoredFeb 9, 2025
Add basic YAML config for the scoreboard (#313)
Co-authored-by: Nesterov Alexander <[email protected]>
1 parent 76d2e34 commit 7f99b82

File tree

5 files changed

+77
-6
lines changed

5 files changed

+77
-6
lines changed
 

‎requirements.txt

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
numpy==2.2.2
22
XlsxWriter==3.2.2
3+
PyYAML==6.0.2

‎scoreboard/data/performance.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
performance:

‎scoreboard/data/plagiarism.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
plagiarism:
2+
mpi: []
3+
omp: []
4+
seq:
5+
- broken_example
6+
stl: []
7+
tbb: []
8+
all: []

‎scoreboard/data/threads-config.yml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
scoreboard:
2+
task:
3+
mpi:
4+
solution:
5+
max: 0
6+
performance:
7+
max: 0
8+
visible: true
9+
omp:
10+
solution:
11+
max: 6
12+
performance:
13+
max: 3
14+
visible: true
15+
seq:
16+
solution:
17+
max: 4
18+
performance:
19+
max: 0
20+
visible: true
21+
stl:
22+
solution:
23+
max: 8
24+
performance:
25+
max: 6
26+
visible: true
27+
tbb:
28+
solution:
29+
max: 6
30+
performance:
31+
max: 3
32+
visible: true
33+
all:
34+
solution:
35+
max: 10
36+
performance:
37+
max: 8
38+
visible: true
39+
plagiarism:
40+
coefficient: 0.5

‎scoreboard/main.py

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from pathlib import Path
22
from collections import defaultdict
33
import argparse
4+
import yaml
45

56
task_types = ['all', 'mpi', 'omp', 'seq', 'stl', 'tbb']
67

@@ -18,7 +19,15 @@
1819
else:
1920
directories[task_name][task_type] = "done"
2021

21-
print(directories)
22+
config_path = Path(__file__).parent / "data" / "threads-config.yml"
23+
assert config_path.exists(), f"Config file not found: {config_path}"
24+
with open(config_path, 'r') as file:
25+
cfg = yaml.safe_load(file)
26+
assert cfg, "Configuration is empty"
27+
plagiarism_config_path = Path(__file__).parent / "data" / "plagiarism.yml"
28+
with open(plagiarism_config_path, 'r') as file:
29+
plagiarism_cfg = yaml.safe_load(file)
30+
assert plagiarism_cfg, "Plagiarism configuration is empty"
2231

2332
columns = ''.join(['<th colspan=5 style="text-align: center;">' + task_type + '</th>' for task_type in task_types])
2433
html_content = f"""
@@ -59,18 +68,30 @@
5968
html_content += f"<tr><td>{dir}</td>"
6069
total_count = 0
6170
for task_type in task_types:
71+
max_sol_points = int(cfg["scoreboard"]["task"][task_type]["solution"]["max"])
72+
task_count = 0
6273
if directories[dir].get(task_type) == "done":
63-
html_content += '<td style="text-align: center;">1</td>'
64-
total_count += 1
74+
html_content += f'<td style="text-align: center;">{max_sol_points}</td>'
75+
task_count += max_sol_points
6576
elif directories[dir].get(task_type) == "disabled":
66-
html_content += '<td style="text-align: center;background-color: lightblue;">1</td>'
67-
total_count += 1
77+
html_content += f'<td style="text-align: center;background-color: lightblue;">{max_sol_points}</td>'
78+
task_count += max_sol_points
6879
else:
6980
html_content += '<td style="text-align: center;">0</td>'
7081
html_content += '<td style="text-align: center;">0</td>'
7182
html_content += '<td style="text-align: center;">0</td>'
7283
html_content += '<td style="text-align: center;">0</td>'
73-
html_content += '<td style="text-align: center;">0</td>'
84+
is_cheated = \
85+
dir in plagiarism_cfg["plagiarism"][task_type] or \
86+
dir[:-len("_disabled")] in plagiarism_cfg["plagiarism"][task_type]
87+
if is_cheated:
88+
plag_coeff = float(cfg["scoreboard"]["plagiarism"]["coefficient"])
89+
plagiarism_points = -plag_coeff * task_count
90+
task_count += plagiarism_points
91+
html_content += f'<td style="text-align: center; background-color: pink;">{plagiarism_points}</td>'
92+
else:
93+
html_content += '<td style="text-align: center;">0</td>'
94+
total_count += task_count
7495
html_content += f'<td style="text-align: center;">{total_count}</td>'
7596
html_content += "</tr>"
7697

0 commit comments

Comments
 (0)
Please sign in to comment.