|
1 | 1 | from pathlib import Path
|
2 | 2 | from collections import defaultdict
|
3 | 3 | import argparse
|
| 4 | +import yaml |
4 | 5 |
|
5 | 6 | task_types = ['all', 'mpi', 'omp', 'seq', 'stl', 'tbb']
|
6 | 7 |
|
|
18 | 19 | else:
|
19 | 20 | directories[task_name][task_type] = "done"
|
20 | 21 |
|
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" |
22 | 31 |
|
23 | 32 | columns = ''.join(['<th colspan=5 style="text-align: center;">' + task_type + '</th>' for task_type in task_types])
|
24 | 33 | html_content = f"""
|
|
59 | 68 | html_content += f"<tr><td>{dir}</td>"
|
60 | 69 | total_count = 0
|
61 | 70 | for task_type in task_types:
|
| 71 | + max_sol_points = int(cfg["scoreboard"]["task"][task_type]["solution"]["max"]) |
| 72 | + task_count = 0 |
62 | 73 | 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 |
65 | 76 | 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 |
68 | 79 | else:
|
69 | 80 | html_content += '<td style="text-align: center;">0</td>'
|
70 | 81 | html_content += '<td style="text-align: center;">0</td>'
|
71 | 82 | html_content += '<td style="text-align: center;">0</td>'
|
72 | 83 | 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 |
74 | 95 | html_content += f'<td style="text-align: center;">{total_count}</td>'
|
75 | 96 | html_content += "</tr>"
|
76 | 97 |
|
|
0 commit comments