added dell r7525 configurations to see the perf of epyc 7282 processors which are absent from r6525 configurations

This commit is contained in:
Guillaume Raffy 2021-04-08 15:29:34 +02:00
parent 8a5945a487
commit 9de8a22cd0
5 changed files with 616 additions and 1 deletions

File diff suppressed because one or more lines are too long

View File

@ -568,7 +568,7 @@ class DellConfiguratorParser():
# initialize the default ram dimms
item_label = self._get_module_default_item(self.get_module_label('ram_change'), html_root)
# Mémoire 16 Go DDR4 à 2933MHz (1x16Go)
match = re.match(r'^Mémoire (?P<num_gb>[0-9]+) Go DDR[\-]?4 à (?P<num_mhz>[0-9]+)MHz \((?P<num_dimms>[0-9]+)x(?P<num_gb_per_dimm>[0-9]+)Go\)', item_label.replace('Mémoire de base : ', ''))
match = re.match(r'^Mémoire (?P<num_gb>[0-9]+) Go DDR[\-]?4 à (?P<num_mhz>[0-9]+)MHz \((?P<num_dimms>[0-9]+)x(?P<num_gb_per_dimm>[0-9]+)Go\)', item_label.replace('Mémoire de base : ', '').replace('De base ', ''))
assert match, 'unhandled label : %s' % item_label
dimm = Dimm(num_gb=int(match['num_gb_per_dimm']), num_mhz=int(match['num_mhz']), mem_type='rdimm')
num_dimms = int(match['num_dimms'])

View File

@ -153,6 +153,7 @@ def plot_configs(configs, xaxis_def, yaxis_def, plot_title):
'dell-poweredge-r6525': 0.5,
'dell-poweredge-c4310': 0.6,
'dell-poweredge-r730': 0.4,
'dell-poweredge-r7525': 0.3,
'dell-poweredge-r940': 0.8,
'dell-poweredge-c6220': 1.0,
'dell-poweredge-c6320': 1.0,

View File

@ -159,6 +159,7 @@ intel-xeon-platinum-8170 2.1 26 8 165 0 0
intel-xeon-platinum-8176 2.1 28 8 165 0 0
amd-epyc-7262 3.2 8 2 155 0 0
amd-epyc-7272 2.9 12 2 120 0 0
amd-epyc-7282 2.8 16 2 120 0 0
amd-epyc-7302 3.0 16 2 155 0 0
amd-epyc-7352 2.3 24 2 155 0 0
amd-epyc-7402 2.8 24 2 180 0 0

1 #id clock num_cores max_cpus tdp cpumark_1_cpu cpumark_2_cpu
159 amd-epyc-7272 2.9 12 2 120 0 0
160 amd-epyc-7302 amd-epyc-7282 3.0 2.8 16 2 155 120 0 0
161 amd-epyc-7352 amd-epyc-7302 2.3 3.0 24 16 2 155 0 0
162 amd-epyc-7352 2.3 24 2 155 0 0
163 amd-epyc-7402 2.8 24 2 180 0 0
164 amd-epyc-7452 2.35 32 2 155 0 0
165 amd-epyc-7502 2.5 32 2 180 0 0

View File

@ -48,6 +48,7 @@ def test_credits_2021_configs():
configurators = [
DellMatinfoConfigurator('20210407 - Cat2 Conf4 PowerEdge R640 - Dell.html', DellConfiguratorParser2021()),
DellMatinfoConfigurator('20210407 - Cat2 Conf7 PowerEdge R940 - Dell.html', DellConfiguratorParser2021()),
DellMatinfoConfigurator('20210407 - Cat2 Conf8 PowerEdge R7525 - Dell.html', DellConfiguratorParser2021()),
DellMatinfoConfigurator('20210407 - Cat2 Conf10 PowerEdge R6525 - Dell.html', DellConfiguratorParser2021()),
]