added dell r7525 configurations to see the perf of epyc 7282 processors which are absent from r6525 configurations
This commit is contained in:
parent
8a5945a487
commit
9de8a22cd0
File diff suppressed because one or more lines are too long
|
@ -568,7 +568,7 @@ class DellConfiguratorParser():
|
||||||
# initialize the default ram dimms
|
# initialize the default ram dimms
|
||||||
item_label = self._get_module_default_item(self.get_module_label('ram_change'), html_root)
|
item_label = self._get_module_default_item(self.get_module_label('ram_change'), html_root)
|
||||||
# Mémoire 16 Go DDR4 à 2933MHz (1x16Go)
|
# 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
|
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')
|
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'])
|
num_dimms = int(match['num_dimms'])
|
||||||
|
|
|
@ -153,6 +153,7 @@ def plot_configs(configs, xaxis_def, yaxis_def, plot_title):
|
||||||
'dell-poweredge-r6525': 0.5,
|
'dell-poweredge-r6525': 0.5,
|
||||||
'dell-poweredge-c4310': 0.6,
|
'dell-poweredge-c4310': 0.6,
|
||||||
'dell-poweredge-r730': 0.4,
|
'dell-poweredge-r730': 0.4,
|
||||||
|
'dell-poweredge-r7525': 0.3,
|
||||||
'dell-poweredge-r940': 0.8,
|
'dell-poweredge-r940': 0.8,
|
||||||
'dell-poweredge-c6220': 1.0,
|
'dell-poweredge-c6220': 1.0,
|
||||||
'dell-poweredge-c6320': 1.0,
|
'dell-poweredge-c6320': 1.0,
|
||||||
|
|
|
@ -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
|
intel-xeon-platinum-8176 2.1 28 8 165 0 0
|
||||||
amd-epyc-7262 3.2 8 2 155 0 0
|
amd-epyc-7262 3.2 8 2 155 0 0
|
||||||
amd-epyc-7272 2.9 12 2 120 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-7302 3.0 16 2 155 0 0
|
||||||
amd-epyc-7352 2.3 24 2 155 0 0
|
amd-epyc-7352 2.3 24 2 155 0 0
|
||||||
amd-epyc-7402 2.8 24 2 180 0 0
|
amd-epyc-7402 2.8 24 2 180 0 0
|
||||||
|
|
|
|
@ -48,6 +48,7 @@ def test_credits_2021_configs():
|
||||||
configurators = [
|
configurators = [
|
||||||
DellMatinfoConfigurator('20210407 - Cat2 Conf4 PowerEdge R640 - Dell.html', DellConfiguratorParser2021()),
|
DellMatinfoConfigurator('20210407 - Cat2 Conf4 PowerEdge R640 - Dell.html', DellConfiguratorParser2021()),
|
||||||
DellMatinfoConfigurator('20210407 - Cat2 Conf7 PowerEdge R940 - 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()),
|
DellMatinfoConfigurator('20210407 - Cat2 Conf10 PowerEdge R6525 - Dell.html', DellConfiguratorParser2021()),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue