PassMark - Hisilicon Kirin980 - Price performance comparison (2024)

CPU Benchmarks

Over 1,000,000 CPUs Benchmarked

Price and performance details for the Hisilicon Kirin980 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
  • New Server
  • New Mobile
  • 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);}

Hisilicon Kirin980

Description:

Class: Mobile/Embedded

Socket:

Clockspeed: 2.6 GHz

Cores: 8 Threads: 8

Other names: Hisilicon Kirin980

CPU First Seen on Charts: Q1 2021

CPUmark/$Price: NA

Overall Rank: 1933

Last Price Change: NA

Average CPU Mark

PassMark - Hisilicon Kirin980 - Price performance comparison (10)

4369

Single Thread Rating: 1741
Samples: 426*
*Margin for error: Low

CPU Test Suite Average Results for Hisilicon Kirin980

Integer Math27,110 MOps/Sec
Floating Point Math9,793 MOps/Sec
Find Prime Numbers17 Million Primes/Sec
Random String Sorting10,446 Thousand Strings/Sec
Data Encryption1,691 MBytes/Sec
Data Compression83,497 KBytes/Sec
Physics396 Frames/Sec
Extended Instructions2,029 Million Matrices/Sec
Single Thread1,741 MOps/Sec

From submitted results to PerformanceTest V10 as of 27th of June 2024.

CPU Mark Distribution for Hisilicon Kirin980

Submitted Baseline Distribution Graph as of 25th of June 2024

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


Search for Hisilicon Kirin980
from the Featured Merchants below:
PassMark - Hisilicon Kirin980 - Price performance comparison (11)
PassMark - Hisilicon Kirin980 - Price performance comparison (12)
PassMark - Hisilicon Kirin980 - Price performance comparison (13)
PassMark - Hisilicon Kirin980 - Price performance comparison (14)

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

CPU Mark Relative to Top 10 Common Mobile/Embedded CPUs
As of 27th of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
AMD Ryzen Z1 Extreme25,328
Apple M1 8 Core 3200 MHz14,180
Intel Core i5-1235U13,417
Apple A15 Bionic9,897
Apple A14 Bionic8,549
AMD Ryzen Embedded V1605B6,677
Apple A13 Bionic5,691
Intel N1005,549
Intel Pentium Silver N6005 @ 2.00GHz5,374
Hisilicon Kirin9804,369
AMD Embedded G-Series GX-420GI Radeon R7E1,578
CPU Value (CPU Mark / $Price )
As of 27th of June 2024 - Higher results represent better value
ProcessorCPU Mark / $Price
Intel Core i5-1235U43.42
Intel N10043.35
Hisilicon Kirin980NA
Intel Pentium Silver N6005 @ 2.00GHzNA
AMD Ryzen Z1 ExtremeNA
AMD Ryzen Embedded V1605BNA
AMD Embedded G-Series GX-420GI Radeon R7ENA
Apple M1 8 Core 3200 MHzNA
Apple A14 BionicNA
Apple A15 BionicNA
Apple A13 BionicNA
Single Thread Rating
As of 27th of June 2024 - Higher results represent better performance
ProcessorAverage Thread Rating
Apple M1 8 Core 3200 MHz3,698
AMD Ryzen Z1 Extreme3,636
Apple A15 Bionic3,604
Apple A14 Bionic3,396
Intel Core i5-1235U3,222
Apple A13 Bionic2,323
Intel N1001,957
AMD Ryzen Embedded V1605B1,908
Intel Pentium Silver N6005 @ 2.00GHz1,770
Hisilicon Kirin9801,741
AMD Embedded G-Series GX-420GI Radeon R7E826
Last 5 Baselines for Hisilicon Kirin980
Most recent listed first
BaselineCPU Mark
BL8084417 - Jun 16 20246218
BL8083271 - May 23 20245969
BL8081886 - Apr 25 20246019
BL8079764 - Mar 13 20246043
BL8079758 - Mar 13 20246001

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

Popular comparisons for Hisilicon Kirin980
As of 27th of June 2024 - Higher results represent better performance
ProcessorAverage CPU Mark
Hisilicon Kirin9804,369
Qualcomm Technologies, Inc SM8150 vs Hisilicon Kirin9804,589 (+5.0%)
Qualcomm Technologies, Inc SDM845 vs Hisilicon Kirin9803,359 (-23.1%)
Apple A12 Bionic vs Hisilicon Kirin9804,960 (+13.5%)
Apple A11 Bionic vs Hisilicon Kirin9804,407 (+0.9%)
Venus based on Qualcomm Technologies, Inc SM8350 vs Hisilicon Kirin9805,398 (+23.6%)
Samsung Exynos 9820 vs Hisilicon Kirin9803,920 (-10.3%)
Samsung Exynos 9825 vs Hisilicon Kirin9803,835 (-12.2%)
MT6833 vs Hisilicon Kirin9803,784 (-13.4%)
Samsung Exynos 9810 vs Hisilicon Kirin9803,749 (-14.2%)
MediaTek MT6785V/CD vs Hisilicon Kirin9803,647 (-16.5%)
MT6833V/NZA vs Hisilicon Kirin9803,641 (-16.7%)
MT6853V/TNZA vs Hisilicon Kirin9803,616 (-17.2%)

PassMark - Hisilicon Kirin980 - Price performance comparison (2024)

References

Top Articles
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 5909

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.