PassMark - GeForce GTX 1060 5GB (2024)

Over 3,900 GPUs Benchmarked

Price and performance details for the GeForce GTX 1060 5GB 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 videocard compared to the 10other common videocards in terms of PassMark G3D Mark.
  • The 2nd graph shows the value for money, in terms of the G3DMark per dollar.
  • VIDEO CARD
  • High End
  • High Mid Range
  • Low Mid Range
  • Low End
  • Best Value
  • Common
  • Market Share
  • Compare0
  • Video Card Mega List
  • Search Model
  • GPU Compute Video Card Chart
  • Power PerformanceVideo Card Chart
  • 2D GraphicsVideo Card List

' + newMsg + '

';toast.style.backgroundColor = "#AE0034";launch_toast();//toast.innerHTML = oldText;//toast.style.backgroundColor = oldBgColor;}}_AddGPU(GPUId, GPUName, GPUCount) {GPUCount = typeof GPUCount !== 'undefined' ? parseInt(GPUCount) : 1;GPUId = parseInt(GPUId);for( var i = 0; i < this.GPUs.length; i++ )if( this.GPUs[i].GPUId == GPUId && this.GPUs[i].GPUCount == GPUCount )return true; // Already addedif( this.GPUs.length < MAX_COMPARE ){console.log( "Index: "+this.GPUs.length+", GPUId: "+GPUId+", GPUName: "+GPUName+", GPUCount: "+GPUCount);this.GPUs.push(new GPU(GPUId, GPUName, GPUCount));return true;}return false;}removeGPU(GPUId, GPUCount) {if( this._RemoveGPU(GPUId, "", GPUCount) ){let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "remove",gpuid: GPUId,gpucount: GPUCount},success: function( data ) {console.log(data);_this.UpdateGUI();},});}}_RemoveGPU(GPUId, GPUName, GPUCount) {GPUCount = typeof GPUCount !== 'undefined' ? GPUCount : 1;for( var i = 0; i < this.GPUs.length; i++ )if( this.GPUs[i].GPUId == GPUId && this.GPUs[i].GPUCount == GPUCount ){this.GPUs.splice(i,1);return true;}return false;}removeAll() {this.GPUs.length = 0;let _this = this;$.ajax({type: "POST",url: "/compareAjax.php",data: {action: "removeAll"},success: function( data ) {console.log(data);_this.UpdateGUI();},});}_RemoveAll() {this.GPUs.length = 0;}CompareGPUs(interactive) {if( this.GPUs.length < 2 ){if(interactive) alert( "Minimum of 2 videocards are required for comparison.");return;}// Build Param Stringlet paramString1 = "";let paramString2 = "";for( let i = 0; i < this.GPUs.length; i++ ){if( i ){paramString1 += " vs ";paramString2 += "vs";}var name = this.GPUs[i].GPUName;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.GPUs[i].GPUId;if( typeof this.GPUs[i].GPUCount !== 'undefined' && Number.isInteger( this.GPUs[i].GPUCount ) && this.GPUs[i].GPUCount > 1 )paramString2 += "." + this.GPUs[i].GPUCount.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.GPUs );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.GPUs.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 GPUslet body = tableSidebar.createTBody();let i;for( i = 0; i < myCmp.GPUs.length; i++ ){row = body.insertRow( -1 );row.setAttribute( "id", "" + myCmp.GPUs[i].GPUId );if( i % 2 )row.setAttribute( "class", "alt" );col2 = row.insertCell();col2.appendChild( document.createTextNode( "" + (i+1) + ": " + myCmp.GPUs[i].GPUName ));col1 = row.insertCell( -1 );col1.setAttribute( "class", "ta-center" );let but = document.createElement( "button" );but.appendChild( document.createTextNode("X") );but.onclick = function(id, numGPUs) {return function(){myCmp.removeGPU(id, numGPUs );anim();};}(myCmp.GPUs[i].GPUId, myCmp.GPUs[i].GPUCount > 1 ? myCmp.GPUs[i].GPUCount : 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 Videocard:") );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: lookupGPUs,serviceUrl: '/autocomplete/gpu/',onSelect: function(suggestion){myCmp.addGPU( suggestion.data, suggestion.value, 1 );},width: 300,minChars: 2});});$("#sidebar_minimize, #sidebar_restore").click( function(event) {event.preventDefault();jQuery('#portamento_container').toggle();jQuery('#sb_restore').toggle();});$("#sidebar_button").on( "click", function() {myCmp.CompareGPUs(true);});function anim() {var indexcmp = document.getElementById('indexcmp');if(indexcmp.innerHTML < 3) {$(".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);}

GeForce GTX 1060 5GB

Bus Interface: PCIe 3.0 x16

Max Memory Size: 5120 MB

Core Clock(s): 1556 MHz

Memory Clock(s): 2002 MHz

DirectX: 12

OpenGL: 4.6

Max TDP: 120 W

Videocard Category: Desktop

Other names: NVIDIA GeForce GTX 1060 5GB

Videocard First Benchmarked: 2018-04-12

G3DMark/Price: 18.62

Overall Rank:233

Last Price Change:$487.99 USD (2021-11-21)

Average G3D Mark

PassMark - GeForce GTX 1060 5GB (7)

9085

Average G2D Mark: 623
Samples: 102

Videocard Test Suite Average Results for GeForce GTX 1060 5GB

DirectX 9149 Frames/Sec
DirectX 1047 Frames/Sec
DirectX 1162 Frames/Sec
DirectX 1233 Frames/Sec
GPU Compute4217 Ops/Sec

From submitted results to PerformanceTest as of 15th of October 2024.

G3D Mark Distribution for GeForce GTX 1060 5GB

Submitted Baseline Distribution Graph as of 18th of September 2024

From submitted results to PerformanceTest V10 as of 18th of September 2024.


Search for GeForce GTX 1060 5GB
from the Featured Merchants below:
PassMark - GeForce GTX 1060 5GB (8)
PassMark - GeForce GTX 1060 5GB (9)
PassMark - GeForce GTX 1060 5GB (10)
PassMark - GeForce GTX 1060 5GB (11)

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

Pricing History

G3D Mark Relative to Top 10 Common Desktop Videocards
As of 16th of October 2024 - Higher results represent better performance
VideocardAverage G3D Mark
GeForce RTX 308025,233
GeForce RTX 307022,375
GeForce RTX 3060 Ti20,501
GeForce RTX 3060 12GB17,000
GeForce RTX 206014,145
GeForce GTX 107013,501
GeForce GTX 106010,074
GeForce GTX 1060 5GB9,085
GeForce GTX 16507,872
GeForce GTX 1050 Ti6,313
PassMark Software © 2008-2024
Videocard Value (G3D Mark / $Price )
As of 16th of October 2024 - Higher results represent better value
VideocardAverage G3D Mark
GeForce GTX 165073.28
GeForce RTX 3060 12GB61.82
GeForce RTX 3060 Ti60.30
GeForce RTX 307045.66
GeForce RTX 308037.11
GeForce RTX 206034.57
GeForce GTX 106029.63
GeForce GTX 107025.47
GeForce GTX 1060 5GB18.62
GeForce GTX 1050 Ti14.73
PassMark Software © 2008-2024
Last 5 Baselines for GeForce GTX 1060 5GB
Most recent listed first
VideocardAverage G3D Mark
BL2212916 - Oct 06 202410324
BL2212430 - Oct 06 202410021
BL2152573 - Jul 24 20249047
BL2149146 - Jul 19 20249088
BL2094423 - May 05 202410541
PassMark Software © 2008-2024
Popular comparisons for GeForce GTX 1060 5GB
As of 16th of October 2024 - Higher results represent better performance
VideocardAverage G3D Mark
GeForce GTX 1060 5GB9,085
GeForce RTX 4090 vs GeForce GTX 1060 5GB38,579 (+324.6%)
GeForce RTX 4080 vs GeForce GTX 1060 5GB34,621 (+281.1%)
RTX 5880 Ada Generation vs GeForce GTX 1060 5GB34,569 (+280.5%)
GeForce RTX 4080 SUPER vs GeForce GTX 1060 5GB34,152 (+275.9%)
GeForce RTX 4070 Ti vs GeForce GTX 1060 5GB31,801 (+250.0%)
GeForce RTX 4070 Ti SUPER vs GeForce GTX 1060 5GB31,643 (+248.3%)
Radeon RX 7900 XTX vs GeForce GTX 1060 5GB31,006 (+241.3%)
GeForce RTX 4070 SUPER vs GeForce GTX 1060 5GB30,193 (+232.3%)
GeForce RTX 3090 Ti vs GeForce GTX 1060 5GB29,691 (+226.8%)
Radeon RX 7900 XT vs GeForce GTX 1060 5GB28,774 (+216.7%)
Radeon RX 6950 XT vs GeForce GTX 1060 5GB28,168 (+210.0%)
PassMark Software © 2008-2024
PassMark - GeForce GTX 1060 5GB (2024)

References

Top Articles
Latest Posts
Recommended Articles
Article information

Author: Margart Wisoky

Last Updated:

Views: 5755

Rating: 4.8 / 5 (58 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Margart Wisoky

Birthday: 1993-05-13

Address: 2113 Abernathy Knoll, New Tamerafurt, CT 66893-2169

Phone: +25815234346805

Job: Central Developer

Hobby: Machining, Pottery, Rafting, Cosplaying, Jogging, Taekwondo, Scouting

Introduction: My name is Margart Wisoky, I am a gorgeous, shiny, successful, beautiful, adventurous, excited, pleasant person who loves writing and wants to share my knowledge and understanding with you.