PassMark - AMD EPYC 7502P (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the AMD EPYC 7502P can be found below.This is made using thousands of PerformanceTestbenchmark results and is updated daily.

  • The first graph shows the relative performance of the CPU compared to the 10 other common (single) CPUs in terms of PassMark CPU Mark.
  • The 2nd graph shows the value for money, in terms of the CPUMark per dollar.
  • The pricing history data shows the price for a single Processor. For multiple Processors, multiply the price shown by the number of CPUs.
  • cpus
  • High End
  • High Mid Range
  • Low Mid Range
  • Low End
  • Best Value(On Market)
  • Best Value XYScatter
  • Best Value(All time)
  • New Desktop
  • New Laptop
  • Single Thread
  • Systems withMultiple CPUs
  • Overclocked
  • PowerPerformance
  • CPU Mark by Socket Type
  • Cross-Platform CPU Performance
  • Top Gaming CPUs
  • CPU Mega List
  • Search Model
  • Compare0
  • Common
  • MostBenchmarked
  • AMD vs Intel Market Share
  • Year on Year Performance

' + newMsg + '

';toast.style.backgroundColor = "#AE0034";launch_toast();//toast.innerHTML = oldText;//toast.style.backgroundColor = oldBgColor;}}_AddCPU(CPUId, CPUName, CPUCount) {CPUCount = typeof CPUCount !== 'undefined' ? parseInt(CPUCount) : 1;CPUId = parseInt(CPUId);for( var i = 0; i < this.CPUs.length; i++ )if( this.CPUs[i].CPUId == CPUId && this.CPUs[i].CPUCount == CPUCount )return true; // Already addedif( this.CPUs.length < MAX_COMPARE ){console.log( "Index: "+this.CPUs.length+", CPUId: "+CPUId+", CPUName: "+CPUName+", CPUCount: "+CPUCount);this.CPUs.push(new CPU(CPUId, CPUName, CPUCount));return true;}return false;}removeCPU(CPUId, CPUCount) {if( this._RemoveCPU(CPUId, "", CPUCount) ){let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "remove",cpuid: CPUId,cpucount: CPUCount},success: function( data ) {console.log(data);_this.UpdateGUI();},});}}_RemoveCPU(CPUId, CPUName, CPUCount) {CPUCount = typeof CPUCount !== 'undefined' ? CPUCount : 1;for( var i = 0; i < this.CPUs.length; i++ )if( this.CPUs[i].CPUId == CPUId && this.CPUs[i].CPUCount == CPUCount ){this.CPUs.splice(i,1);return true;}return false;}removeAll() {this.CPUs.length = 0;let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "removeAll"},success: function( data ) {console.log(data);_this.UpdateGUI();},});}_RemoveAll() {this.CPUs.length = 0;}CompareCPUs(interactive) {if( this.CPUs.length < 2 ){if(interactive) alert( "Minimum of 2 CPUs are required for comparison");return;}// Build Param Stringlet paramString1 = "";let paramString2 = "";for( let i = 0; i < this.CPUs.length; i++ ){if( i ){paramString1 += " vs ";paramString2 += "vs";}var name = this.CPUs[i].CPUName;var n = name.indexOf("@");if( n > 0 ){name = name.substr( 0, n-1 );}name = name.replace( /\//g, "", name );name = name.replace( /Intel\sCore\b/i, "Intel " );name = name.replace( /\s+/g, " ", name );paramString1 += name;paramString2 += "" + this.CPUs[i].CPUId;if( typeof this.CPUs[i].CPUCount !== 'undefined' && Number.isInteger( this.CPUs[i].CPUCount ) && this.CPUs[i].CPUCount > 1 )paramString2 += "." + this.CPUs[i].CPUCount.toString();}// Redirect to comparison pagelet locationHref = "/compare";window.location.href = encodeURI(locationHref +"/" + paramString2 +"/" + paramString1.replace(/\s/g, "-"));}}function updateSidebar(){let objSidebar = document.getElementById("sidebar");if( !objSidebar ){console.log( "Error: Object 'sidebar' not found!" );return;}console.log( "UpdateSideBar() Max Compare: " + MAX_COMPARE );console.log( myCmp.CPUs );let pSidebar = document.getElementById("sidebar_default_text");let tableSidebar = document.getElementById( "sidebar_table" );let buttonSidebar = document.getElementById( "sidebar_button" );let divTableSidebar = document.getElementById( "div_sidebar_table" );pSidebar.style.display = (myCmp.CPUs.length < 2) ? "block":"none";divTableSidebar.style.display = "block";buttonSidebar.style.display = "block";// Remove all previous rowswhile( tableSidebar.hasChildNodes() )tableSidebar.removeChild( tableSidebar.lastChild );// Headerlet header = tableSidebar.createTHead();let headRow = header.insertRow();let headCell = document.createElement("th");let col2 = headRow.insertCell();let col1 = headRow.insertCell();col1.setAttribute( "class", "ta-center" );col2.appendChild( document.createTextNode( "Compare List" ) );col1.appendChild( document.createTextNode( "" ) );// Create new rows for CPUslet body = tableSidebar.createTBody();let i;for( i = 0; i < myCmp.CPUs.length; i++ ){row = body.insertRow( -1 );row.setAttribute( "id", "" + myCmp.CPUs[i].CPUId );if( i % 2 )row.setAttribute( "class", "alt" );col2 = row.insertCell();col2.appendChild( document.createTextNode( "" + (i+1) + ": " + myCmp.CPUs[i].CPUName ));col1 = row.insertCell( -1 );col1.setAttribute( "class", "ta-center" );let but = document.createElement( "button" );but.appendChild( document.createTextNode("X") );but.onclick = function(id, numCPUs) {return function(){myCmp.removeCPU(id, numCPUs );anim();};}(myCmp.CPUs[i].CPUId, myCmp.CPUs[i].CPUCount > 1 ? myCmp.CPUs[i].CPUCount : 1);col1.appendChild( but );}if( i < MAX_COMPARE ){let row = body.insertRow( -1 );row.setAttribute( "id", "selectCPU" );if( i % 2 )row.setAttribute( "class", "alt" );let label = document.createElement( "label" );label.setAttribute("for", "autocomplete");label.setAttribute("style", "color: #00496B; font-size:10px;");label.appendChild( document.createTextNode("Add other CPU:") );let img = document.createElement( "img" );img.setAttribute("class", "icon-s-comp");img.setAttribute("src", "/img/compsearch.svg");let x = document.createElement( "input" );x.setAttribute( "id", "autocomplete" );x.setAttribute( "placeholder", "Intel Core ..." );x.setAttribute( "type", "text" );//x.setAttribute( "class", "input-box" );let col = row.insertCell();col.setAttribute( "colspan", 2 );col.appendChild( label );col.appendChild( document.createElement( "br" ));col.appendChild( img );col.appendChild( x );}}var myCmp = new MyCompare();$(document).ready( function($) {// Floating sidebar $('#sidebar').portamento();myCmp.UpdateGUI();});$(document).on('keydown.autocomplete', '#autocomplete', function() {jQuery(this).autocomplete({//lookup: lookupCPUs,serviceUrl: '/autocomplete/cpu/',onSelect: function(suggestion){myCmp.addCPU( suggestion.data, suggestion.value, 1 );},showNoSuggestionNotice: true,noSuggestionNotice: "Failed to locate CPU model. Try looking at mega list to see all names instead.",width: 300,minChars: 3,preventBadQueries: true,deferRequestBy: 200});});$("#sidebar_minimize, #sidebar_restore").click( function(event) {event.preventDefault();jQuery('#portamento_container').toggle();jQuery('#sb_restore').toggle();});$("#sidebar_button").on( "click", function() {myCmp.CompareCPUs(true);});function anim() {var indexcmp = document.getElementById('indexcmp');if(indexcmp.innerHTML < MAX_COMPARE) {$(".cmp-header a svg").addClass("anim-class");$(".cmp-header .number-cmp").addClass("anim-bounce-class");setTimeout(function () {$(".cmp-header a svg").removeClass('anim-class');}, 1500); }}function anim2() {$(".cmp-header a svg").addClass("anim-class");setTimeout(function () {$(".cmp-header a svg").removeClass('anim-class');}, 1500);}function launch_toast(toastID) {//var indexcmp = document.getElementById("indexcmp"); var toast = document.getElementById("toast"); //toast.top = indexcmp.top+30; toast.className = "show"; toast.style.display = "block"; setTimeout(function(){ toast.className = toast.className.replace("show", ""); }, 5000);}

AMD EPYC 7502P

Description:

Class: Server

Socket: SP3

Clockspeed: 2.5 GHz

Turbo Speed: 3.4 GHz

Cores: 32 Threads: 64

Typical TDP: 180 W

Cache per CPU Package:
L1 Instruction Cache: 32 x 32 KB
L1 Data Cache: 32 x 32 KB
L2 Cache: 32 x 512 KB
L3 Cache: 128 MB

Other names: AMD EPYC 7502P 32-Core Processor

CPU First Seen on Charts: Q3 2019

CPUmark/$Price: 42.99

Overall Rank: 119

Last Price Change: $1,171.99 USD (2024-05-26)

Average CPU Mark

PassMark - AMD EPYC 7502P (10)

50382

Single Thread Rating: 1996
Samples: 31*
*Margin for error: Low

PerformanceTest V9
CPU Mark: 27,437
Thread: 1,404

CPU Test Suite Average Results for AMD EPYC 7502P

Integer Math211,456 MOps/Sec
Floating Point Math123,991 MOps/Sec
Find Prime Numbers319 Million Primes/Sec
Random String Sorting98,608 Thousand Strings/Sec
Data Encryption60,899 MBytes/Sec
Data Compression878,421 KBytes/Sec
Physics4,029 Frames/Sec
Extended Instructions53,099 Million Matrices/Sec
Single Thread1,996 MOps/Sec

From submitted results to PerformanceTest V10 as of 1st of June 2024.

CPU Mark Distribution for AMD EPYC 7502P

Submitted Baseline Distribution Graph as of 31st of May 2024

From submitted results to PerformanceTest V10 as of 31st of May 2024.
For distribution graph only: Results are trimmed to exclude outliers by disregarding the bottom 1% and top 1% of submissions.


MerchantPricePurchase
PassMark - AMD EPYC 7502P (11)$1,171.99 USDBuy Now!
PassMark - AMD EPYC 7502P (12)NACPU Not Available. See Other Models
PassMark - AMD EPYC 7502P (13)NACPU Not Available. See Other Models

Note: PassMark Software may earn compensation for sales from links on this site through affiliate programs.

Pricing History


CPU Mark Relative to Top 10 Common Server CPUs
As of 1st of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Threadripper PRO 5975WX76,009
AMD Ryzen Threadripper PRO 3975WX62,990
AMD EPYC 7502P50,382
Montage Jintide C5418Y49,045
AMD Ryzen Threadripper PRO 3955WX40,363
Intel Xeon E5-2680 v4 @ 2.40GHz17,804
Montage Jintide C4215R14,672
Intel Xeon E5-2697 v2 @ 2.70GHz14,304
Intel Xeon E5-1650 v3 @ 3.50GHz10,424
Intel Xeon E5-1650 v2 @ 3.50GHz9,345
Intel Xeon E5-1620 v3 @ 3.50GHz6,987
CPU Value (CPU Mark / $Price )
As of 1st of June 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Xeon E5-1620 v3 @ 3.50GHz537.91
Intel Xeon E5-1650 v3 @ 3.50GHz191.40
Intel Xeon E5-2680 v4 @ 2.40GHz84.80
Intel Xeon E5-2697 v2 @ 2.70GHz81.74
AMD EPYC 7502P42.99
AMD Ryzen Threadripper PRO 3955WX42.71
Intel Xeon E5-1650 v2 @ 3.50GHz40.64
AMD Ryzen Threadripper PRO 5975WX31.94
AMD Ryzen Threadripper PRO 3975WX26.86
Montage Jintide C4215RNA
Montage Jintide C5418YNA
Single Thread Rating
As of 1st of June 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
AMD Ryzen Threadripper PRO 5975WX3,312
AMD Ryzen Threadripper PRO 3955WX2,681
AMD Ryzen Threadripper PRO 3975WX2,660
Montage Jintide C5418Y2,341
Montage Jintide C4215R2,134
Intel Xeon E5-1650 v3 @ 3.50GHz2,124
Intel Xeon E5-1650 v2 @ 3.50GHz2,047
Intel Xeon E5-1620 v3 @ 3.50GHz2,013
AMD EPYC 7502P1,996
Intel Xeon E5-2680 v4 @ 2.40GHz1,950
Intel Xeon E5-2697 v2 @ 2.70GHz1,794
Last 5 Baselines for AMD EPYC 7502P
Most recent listed first
BaselineCPU Mark
BL5064548 - May 19 202452807
BL5059055 - Mar 20 2024 [Excluded]1694
BL5058301 - Mar 08 202453246
BL5054095 - Dec 20 202355265
BL5054079 - Dec 19 202353070

Additional baselines can be obtained using Windows version of PerformanceTest's Manage Baselines feature.

Popular comparisons for AMD EPYC 7502P
As of 1st of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD EPYC 7502P50,382
AMD EPYC 7402P vs AMD EPYC 7502P43,960 (-12.7%)
AMD Ryzen Threadripper PRO 3955WX vs AMD EPYC 7502P40,363 (-19.9%)
AMD EPYC 7443P vs AMD EPYC 7502P57,215 (+13.6%)
AMD EPYC 7F72 vs AMD EPYC 7502P52,110 (+3.4%)
AMD EPYC 7452 vs AMD EPYC 7502P47,951 (-4.8%)
AMD EPYC 7542 vs AMD EPYC 7502P47,626 (-5.5%)
AMD EPYC 7642 vs AMD EPYC 7502P60,029 (+19.1%)
Intel Xeon Gold 5512U vs AMD EPYC 7502P59,877 (+18.8%)
Intel Xeon Gold 5412U vs AMD EPYC 7502P52,742 (+4.7%)
AMD EPYC 7413 vs AMD EPYC 7502P50,223 (-0.3%)
Intel Xeon Gold 6330 @ 2.00GHz vs AMD EPYC 7502P43,056 (-14.5%)
AMD EPYC 7313P vs AMD EPYC 7502P42,032 (-16.6%)

PassMark - AMD EPYC 7502P (2024)

FAQs

What year is AMD EPYC 7502P? ›

The AMD EPYC 7502P is a server/workstation processor with 32 cores, launched in August 2019.

How fast is AMD EPYC? ›

Performance Benchmarks and Testing

Each EPYC 7542 processor has 32 cores with a base frequency of 2.9 GHz and boost of up to 3.4 GHz and 128 MB of L3 cache.

What is the strongest EPYC processor? ›

EPYC 9004 is AMD's latest and highest performance range of server processors, and are the foundation of a whole new SP5 platform that introduces lots of new features.

Is AMD EPYC better than Intel? ›

Processor Architecture

AMD EPYC is focused on performance-per-dollar compared to Intel Xeon, with a 7nm Zen 2 core design that allows up to 64 cores at an affordable price. Intel Xeon instead offers higher clock frequencies and supports larger caches, which translates into better single-thread performance per core.

Is EPYC better than Ryzen? ›

The answer really depends on exactly what tasks and applications for which your workstation is used. For most applications, Ryzen is the most efficient and cost effective option but certain specialized power users will see enormous benefits from a multi-core solution like Threadripper or even Epyc.

Which is better Threadripper or EPYC? ›

With up to 64 total processing cores (and 128 threads), Threadripper is best suited for high demand applications like professional VFX, video, and rendering. Some of the key benefits over EPYC include: Core Frequency – Unlike many other high core count processor options, Threadripper runs a Boost speed of 4.3-4.5GHz.

What does the P stand for in EPYC? ›

A "P" suffix denotes support for only a single socket configuration. Non-P models use 64 PCIe lanes from each processor for the communication between processors. Common features of EPYC 7001 series CPUs: Socket: SP3. All the CPUs support ECC DDR4-2666 in octa-channel mode (7251 supports only DDR4-2400).

When was AMD EPYC 7502 released? ›

The AMD EPYC 7502 is a server/workstation processor with 32 cores, launched in August 2019.

When was the AMD EPYC 7551p launched? ›

Jun 29th, 2017

When did AMD EPYC come out? ›

Epyc (stylized as EPYC) is a brand of multi-core x86-64 microprocessors designed and sold by AMD, based on the company's Zen microarchitecture. Introduced in June 2017, they are specifically targeted for the server and embedded system markets.

When did the EPYC 7251 come out? ›

The AMD EPYC 7251 is a server/workstation processor with 8 cores, launched in June 2017.

Top Articles
Latest Posts
Article information

Author: Golda Nolan II

Last Updated:

Views: 6581

Rating: 4.8 / 5 (78 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Golda Nolan II

Birthday: 1998-05-14

Address: Suite 369 9754 Roberts Pines, West Benitaburgh, NM 69180-7958

Phone: +522993866487

Job: Sales Executive

Hobby: Worldbuilding, Shopping, Quilting, Cooking, Homebrewing, Leather crafting, Pet

Introduction: My name is Golda Nolan II, I am a thoughtful, clever, cute, jolly, brave, powerful, splendid person who loves writing and wants to share my knowledge and understanding with you.