AMD Threadripper 3990X CPU Review | Code Compile, Render, & Compression

2024 ж. 3 Мам.
180 036 Рет қаралды

We threw together a 3990X review in the last few hours before leaving for factory tours in Taiwan. We've got more numbers we want to publish later, but started with this.
Sponsor: Buy Thermal Grizzly Conductonaut on Amazon (geni.us/1D8Eeq) or Hydronaut paste (geni.us/Fsray)
Find the Threadripper 3990X on Amazon: geni.us/xvKS5rE
Threadripper 3970X on Amazon: geni.us/uB7SHnO
AMD R9 3950X on Amazon: geni.us/NAE6f
Intel 9900K on Amazon: geni.us/qsJO
Won't have the article up for this one due to active travel in Taiwan for the factory tours. In this video, we're reviewing the AMD Threadripper 3990X CPU vs. the 3970X, 3960X, Intel Xeon W-3175X, Intel 10980XE, and more. Benchmarks include programming/code compile of Chromium, Adobe Premiere, Blender, V-Ray, Adobe Photoshop, Compression, and Decompression. We also have additional benchmarks for gaming and power, but didn't include them for sake of timing. We'll try to produce additional content around this CPU later.
The best way to support our work is through our store: store.gamersnexus.net/
Like our content? Please consider becoming our Patron to support us: / gamersnexus
** Please like, comment, and subscribe for more! **
Links to Amazon and Newegg are typically monetized on our channel (affiliate links) and may return a commission of sales to us from the retailer. This is unrelated to the product manufacturer. Any advertisements or sponsorships are disclosed within the video ("this video is brought to you by") and above the fold in the description. We do not ever produce paid content or "sponsored content" (meaning that the content is our idea and is not funded externally aside from whatever ad placement is in the beginning) and we do not ever charge manufacturers for coverage.
Follow us in these locations for more gaming and hardware updates:
t: / gamersnexus
f: / gamersnexus
w: www.gamersnexus.net/
Editorial, Testing: Steve Burke
Testing: Patrick Lathan
Video: Andrew Coleman, Keegan Gallick

Пікірлер
  • We have a few other tests we still want to do with this CPU, but those will have to wait until we get home. We threw this one together just before leaving for Taiwan (in the final hours!) for factory tours, but it's still pretty complete. New code compile stuff will be fun as we expand it. If you want to watch us lap/sand a Threadripper 3970X CPU, check out this video: kzhead.info/sun/aruvdJGXeYWGo6s/bejne.html

    @GamersNexus@GamersNexus4 жыл бұрын
    • I bought the Australia T-Shirt, I received it last Thursday(I'm from the Netherlands) And I am very pleased! It's good quality and it is very comfy to wear!

      @teaser6089@teaser60894 жыл бұрын
    • Watch out for the human malware!

      @brettanderson6743@brettanderson67434 жыл бұрын
    • Whats up slackers!!!! Need a lap job?

      @BeardedHardware@BeardedHardware4 жыл бұрын
    • If when you come back from Taiwan you lose your voice, please have some one else read the script.

      @anonymous_coward@anonymous_coward4 жыл бұрын
    • You really need to start doing dual tasks - eg. Premiere and Blender renders at the same time. That's a more realistic scenario for someone looking for a 64 core chip - 2 virtualized workstations, or a situation where you have multiple tasks going on at the same time.

      @lucidnonsense942@lucidnonsense9424 жыл бұрын
  • We do bulk compiles of open-source applications. This isn't just compiling chromium or blender or open-office, this is compiling EVERYTHING in the open-source world to generate binary ports for distribution. Over 100 project slots compile in parallel at any given moment, each one typically -j 24, for 30,000+ applications (5000 of which are huge, like chromium for example, which alone has 30000 source files). Millions of source files in total. Our 2990WX could do the x86 run in about, oh, 16 hours or so. We've been burning in a 3990X and it does the same workload in half the time.. 8 hours, in roughly the same power envelope (only roughly 30W more). We have the 3990X capped at around 300W at the wall for our work, on air of course (its kinda stupid to overclock it and equally dumb to water-cool a box that has to run flawlessly 24x7 for years. Water is fine for enthusiasts... not so fine for real continuous workloads). The word insane doesn't even begin to describe the performance. Looking at the statistics, the kernel is allocating and freeing roughly 10 GBytes/sec of anonymous memory on behalf of the build (make, sh, c++ compiles mostly). Continuously for 8 hours straight. System call rate peaks at over 40 million system calls per second and average in the 3-4M/sec range. VM page faults are also in the millions per second, continuously for 8 hours. The CPU load exceeds 400 during the build and the system is still responsive under those conditions. Of course, this is NOT running windows which would fall over under these conditions. To use the full concurrency of 128 threads doing c++ compiles you need around 2 GBytes of memory per thread... 256GB total. Even 64GB isn't even remotely enough memory (maybe for your benchmark, but not for any real-world bulk compile). And certainly not less... that would be insane. The last thing you want to have happen is to force the system to page heavily while running concurrent compiles, nor do you want the system to be forced to constantly re-IO the same data files over and over again (project dependencies) because it doesn't have enough memory to cache most of it. -Matt

    @junkerzn7312@junkerzn73124 жыл бұрын
    • For the workload you described above, would you have seen meaningful gains going to an Epyc CPU in order to get more than 256GB into the system? I know the Epyc "equivalent" is much more expensive, not even talking about how much the RAM would end up costing on it's own, just a thought exercise I'm wondering if you explored.

      @JustinKelley1123@JustinKelley11234 жыл бұрын
    • @@JustinKelley1123 The workload does not scale with memory once you have 'enough'. You just need to have sufficient memory so that it can utilize all 128 threads doing concurrent c++ compiles without having to page to swap much or do excessive amounts of normal filesystem disk I/O during the bulk run. So a single-socket EPYC with more memory would not be any faster. Also, I kinda wonder what GN's setup was... if they were just compiling one application (like blender for example), they were probably doing it on a normal filesystem and not on a TMPFS filesystem. The big bulk compiles done on Linux and BSD systems all use TMPFS to stage the work. Because its kinda dumb to waste cycles writing (and reading) temporary object files to a storage-based filesystem that you are only going to wipe when the build is done. Only the source dist is read and only the final binary distfile is written out to a normal storage-based filesystem. So in terms of c++ compiles, 256GB memory is fine. In terms of other industrial workloads... maybe not. For the concurrent compiles you could probably get away with 128GB but its pushing it. 1GB per concurrent C++ compile is not a whole lot of memory (all the memory is shared of course, but the aggregate memory load is still up against the wall and will force some paging). GN's workload is not really reflective of the reality... they are just compiling one project, not tens of thousands of projects. So it might seem that it fits in a smaller memory footprint but that would only be true for that particular project and not for a real multi-project bulk compile load. Of course, a dual-EPYC ... oooh, 128-core/256-threads. Now THAT would be faster. It would probably be able to do the bulk in 4 hours. But it is also way out of our budget (we're talking 3x to 4x as expensive as a 3990X rig with 256GB of ram). We only have the funds for one 3990X :-), which we use for the fast-turnaround bulks. Because the open-source application set is constantly undergoing updates (literally hundreds of updates a day across the entire set), projects have to run their bulks continuously to find and debug problems. Once the issue is resolved maintenance builds can be shuffled off to slower machines. In our case, two 3900X's (each with 64G of ram and can do a bulk in 26 hours), and a dual-socket Xeon (which has 128G of ram and can do a bulk in around 31 hours). In terms of price efficiency, its really hard to beat a 3900X or 3950X (as long as you don't mind the extra build time). But having that fast-turnaround with the 3990X is worth its weight in gold for developers. -Matt

      @junkerzn7312@junkerzn73124 жыл бұрын
    • It can’t even game though 😎 Intel is gaming KING! AMD isn’t for gaming or anything really you’d be far better off with an Intel CPU, only a poor person would ever buy AMD. All those cores yet it can’t even come close to the 9900KS GODLIKE performance epic gaming. AMD peasants are bowing before Intel master race as always

      @ashm3406@ashm34064 жыл бұрын
    • @@ashm3406 I hope you are trolling because not even Intel fan can be this dumb.... right?

      @Verpal@Verpal4 жыл бұрын
    • @@junkerzn7312 Got it! Wasn't sure if you were 256gb was 'enough' between the described workload and the compile benchmark in the video illustrating that 32gb wasn't enough for a single chromium compile. I've got no experience and not much knowledge on code compilation, so I appreciate the quick and informative response!

      @JustinKelley1123@JustinKelley11234 жыл бұрын
  • Gonna get one of these so my dad can play solitaire

    @chandlerreynolds40@chandlerreynolds404 жыл бұрын
    • He could play 10.000+ Solitaires at ones!

      @teaser6089@teaser60894 жыл бұрын
    • Imagine the size of the minesweeper game you could make. 🤔

      @MafiaboysWorld@MafiaboysWorld4 жыл бұрын
    • @@MafiaboysWorld You'll destroy it after nearly finishing such a level and losing.

      @jasonlisonbee@jasonlisonbee4 жыл бұрын
    • @@jasonlisonbee I wouldn't make it past square two. It would be first click and I see 8. 😬

      @MafiaboysWorld@MafiaboysWorld4 жыл бұрын
    • @@MafiaboysWorld At some point you might be bored enough to get good at it. It would take months to get through the largest size it could handle. If you get that far and lose you might be too po'd to remember how much you paid for the hardware until after you wreck it.

      @jasonlisonbee@jasonlisonbee4 жыл бұрын
  • I like how the Cute Pet case has just become a permanent arm rest for Steve lol

    @Weaver_Games@Weaver_Games4 жыл бұрын
    • That's the most important development here, really.

      @insomnyuk@insomnyuk4 жыл бұрын
    • Now if you could get case in custsom colors, I know a few cat lovers out there who would be game for case if only in a different color.

      @samtime2711@samtime27114 жыл бұрын
  • The fact that this single desktop CPU approached the render performance of dual Tesla V100 compute cards is insane.

    @TheKazragore@TheKazragore4 жыл бұрын
    • Wait what?!?

      @yeetusfetus8687@yeetusfetus86874 жыл бұрын
    • what is the most powerful cpu i can buy right now

      @cold9574@cold95743 жыл бұрын
  • Even something like a 5% scaling over the course of a single project could justify the hardware price increase. Considering I bill anywhere from $100-$300 an hour as a contract, so average of $200, with 2080 baseline work hours in a year, the increase in cost would justify itself in about 6 months.

    @Gusto3791@Gusto37914 жыл бұрын
    • Assuming it gets more work in the door, yes, definitely. As long as you have more work piling up than your computer allows you to complete, it makes sense as a professional.

      @GamersNexus@GamersNexus4 жыл бұрын
    • @@GamersNexus I mean, even if it means you just get to finish early and go home to enjoy life it might be worth it. $4k really isn't that much of an expense for professional work, so arguing for a slower part at a lower price would seem hard to justify for those use cases.

      @Mike_Hogsheart@Mike_Hogsheart4 жыл бұрын
    • Vally123 In most workload situations this is somewhat doubtful. Even for a compile, you typically are not compiling that many times a day where that small time difference would make that much of a difference because you’re background compiling. From a graphics perspective this CPU is way overkill so the only real application is going to be very specific compression tasks and clean compiles. Programmers typically don’t do that many clean compiles a day for this to be worth the cost difference, IMO. Besides you can always run clean compiles when you aren’t there. It’s not like you have to do them to move onto the next step like photo/video post production work.

      @Alexlfm@Alexlfm4 жыл бұрын
    • Those people that truly need this CPU will get more than 5% scaling out of it. Above someone wrote about doing huge concurrent compiles where they max one of these 24/7 with 256GB of RAM and get a 3.25x improvement over the 3900x (8 instead of 26.hours). That CPU will pay for itself many times over for those that need it. This compile job was also done on WIN with 1/4 the RAM it should have had and no optimizations to the file system or compile job. Or even the I/O. Even a Ferrari is wasted on the Highway if you drive it in 2nd gear. Same with a 18 Wheeler that is only half loaded. The problem is with the Benchmarking not the CPU.

      @excitedbox5705@excitedbox57054 жыл бұрын
    • excited box Those are VERY specific use cases and not the norm for developers by a long shot. Those are clean compiles IE building everything from scratch. This is done for distribution not typically very often during development where you are only doing one relatively small piece at a time. In his case absolutely it makes a difference but that is not typical. Even for a clean build, I tend to do these at the end of the day or at lunch so time saved is not really important so long as it is done by the time I get back (which the cheaper parts accomplish). Some users will find value, of course, my point is that most people are not likely to either A, actually book more jobs (as Steve mentioned) with that faster time since that’s not the real limiting factor there and or B, have it give them more personal time owing to the fact that full builds are generally done unsupervised. Clean compiles are nice but not required and writing code isn’t like GFX where you have to wait for it to finish to continue work. With many IDEs code compiles in the background as well further reducing the requirement for this. The value proposition for an average development shop isn’t there, unless it’s handling multiple full compiles for extremely large projects.

      @Alexlfm@Alexlfm4 жыл бұрын
  • Do simulations tests, fluids and so on with Houdini FX please!

    @Helios.vfx.@Helios.vfx.4 жыл бұрын
    • agree

      @theeskimo9875@theeskimo98754 жыл бұрын
    • @@theeskimo9875 Yeah that must be amazing to see how that processor handles all those things.

      @Helios.vfx.@Helios.vfx.4 жыл бұрын
    • Fluid dynamics modeling. oh to have one of these when I was a graduate student.

      @sahdikann5947@sahdikann59474 жыл бұрын
    • @@sahdikann5947 I think for that, you'd need a Ryzen 9 3950x, it's more than enough. Or its equivalent in the moment you'd buy a processor. It supports 128gb ram.

      @Helios.vfx.@Helios.vfx.4 жыл бұрын
    • Starmaker There is no one cpu that is enough for this. And event in next 10-20 years one cpu will be bullshit for fluid sim and particle sim. The only hope is in graphite cpus up to 400ghz.

      @montazownianr1@montazownianr14 жыл бұрын
  • 0:26 "Tough to benchmark. At $4,000 it's an uncommon purchase for most of our audience." Steve, I think you might mean ALL of our audience.

    @clansome@clansome4 жыл бұрын
    • that audience is going to find steve now tho

      @Triplechomending@Triplechomending4 жыл бұрын
    • Not all.

      @fuckoff565@fuckoff5654 жыл бұрын
    • There are people who would and should buy this. And I’m sure a couple of them watch this

      @erichall090909@erichall0909094 жыл бұрын
    • Not all of the audience. We just bought a 3970x based system for some research. The only reason it was not a 3990x is that none of our suppliers could get it in reasonable time...

      @heliosfa@heliosfa4 жыл бұрын
    • if I had the funds, I would have the 3990x already, 3delight and RenderMan would love that 64c CPU as can be clearly seen on the GN monkey head tests. My electric bill probably wouldn't like me as much with that CPU, however that is another matter. lol. Agreed, Gamers that watch Gamers Nexus, probably shouldn't waste their money on the 3990x or the 10980xe or W-3175X for a gaming computer.

      @Zarcondeegrissom@Zarcondeegrissom4 жыл бұрын
  • Well done and informed video. The rap up at the end, will help a lot of people choosing savely what to buy. Thanks for your passion

    @tgdxdrakoon7019@tgdxdrakoon70194 жыл бұрын
  • been waiting a while for this vid!! Great vid Steve!!

    @nathanc4504@nathanc45044 жыл бұрын
  • It's a nice review, I own 2990wx a and a 3990x, and usually work with 2970wx and 3970x as well. and there is something in this review that you didn't mention. There is apps that scale better and can use the full potential of the 3990x like Vray and Blender, and then there is the ones that won't scale that nicely because there is just SSD bottleneck or any other bottleneck due to software like Premiere and so ... BUT: I think here there is another very important thing to mention. There is times where the bottleneck is the windows Scheduler. ( yeah I know you will do a Linux review ) but i'm talking about windows to windows here ( and yes I know they kinda patched windows pro, and also the statements of AMD about it ) but windows pro separate the threads in two groups in some applications we are noticing the CPU just uses at 100% power only, and exactly, half of the core counts. Yes this would be a "software bottleneck" but it's the SO so I think is worth mention, Looks like windows pro separate the cores in 2 groups and that the scheduler fails terribly into send jobs to both of them ( unless the software is properly set to do so like Vray or Blender) Looks like windows pro Enterprise/Workstation doesn't separate the threads in two groups so this specifics apps that are not programmed exactly to use all the cores, and that rely on the windows schedulers could get benefit from this... again, I can stress my CPU max power but just on half of it. If i could get the other half I would double the power. For instance I can open another instance of the same program, run it and will utilise the other half of the cores available and works like charm also. But simetimes you want more power in one instance of the program, not to run 2 instance of the program I think this would be worth testing cos that means 1, the scheduler of windows pro is shit. 2 if you own a 3990x and this enterprise version just can run soft in all cares and not like the windows pro then is worth the upgrade to windows enterprise/workstation. Sadly.. very little information about this topic...

    @chocopie099@chocopie0994 жыл бұрын
    • >Sadly.. very little information about this topic... What do you mean? Anandtech covered this extensively.

      @Nothinglastsforever@Nothinglastsforever4 жыл бұрын
    • @@Nothinglastsforever yes and no, Anandtech exposed the problem then AMD deny it... and we are here. Unless Anandtech said something else that im not aware of.

      @chocopie099@chocopie0994 жыл бұрын
    • @@chocopie099 I did not know AMD denied it. Why would AMD deny it when they can blame it on Microsoft? And not just Microsoft, but the applications that don't know how to prioritise separate CPUs.

      @Nothinglastsforever@Nothinglastsforever4 жыл бұрын
  • I love that the kitty cat case has been on the workbench for the last few vids.

    @drizztcat1@drizztcat14 жыл бұрын
  • One of the few tech tubers that get that much in depth with 0 bias

    @michaelgerrard8878@michaelgerrard88784 жыл бұрын
  • Good on you for mentioning Phoronix. Michael does great work on testing Linux distros for performance with recent hardware.

    @nO_d3N1AL@nO_d3N1AL4 жыл бұрын
  • As a software engineer I am happy to see compile benchmarks. I have spent so many hours of my life waiting for large code bases to build.

    @drescherjm@drescherjm4 жыл бұрын
  • Great review, some fascinating results. Solidified the 3950X for me as a great choice if AMDing. Now to wait a bit more for prices to drop.

    @whiskeymike7364@whiskeymike73644 жыл бұрын
  • Thank's for this very informative video.

    @johnpaulbacon8320@johnpaulbacon83204 жыл бұрын
  • 07:45 "...44 more"

    @bonuspretzel3347@bonuspretzel33474 жыл бұрын
  • I think it was Wendell who lent you the chip.

    @inkysteve@inkysteve4 жыл бұрын
    • yea, i cant imagine who else it would be.

      @olo398@olo3984 жыл бұрын
    • why cant they tell who sent it? Is there a reason?

      @programmier@programmier4 жыл бұрын
    • @@programmier amd mad

      @materialburst983@materialburst9834 жыл бұрын
    • BPS or Bearded Hardware

      @andrewb6@andrewb64 жыл бұрын
    • I reckon it’s jays

      @lucasgillard-goode1947@lucasgillard-goode19474 жыл бұрын
  • I'm glad that you are doing compile benchmarks. I'm a software developer and every time I'm in market for new CPU I try to look for compile benchmarks, but nobody does them...

    @CrowCZ@CrowCZ4 жыл бұрын
  • Great video and analysis. Even though these CPUs are best suited for corporate (Cloud computing) environments, where virtualization is the key, for this they offer great value and support through PCI-E lanes, cores, core cache, thermal and power consumption and also value in terms cores vs price. Thanks GN for these benchmarks since they give a lot of insight when compared to regular home or HDT processors.

    @MarioCRO@MarioCRO4 жыл бұрын
  • EVGA making an AMD motherboard, never thought I'd see the day lol.

    @Noman1000@Noman10004 жыл бұрын
    • Really?

      @denanhajrovic4183@denanhajrovic41834 жыл бұрын
    • They will go bankrupt if they only supporting shintel

      @inferno72229@inferno722294 жыл бұрын
    • EVGA originally made boards for AMD.... But where in the video did Steve say they are making AMD boards again?

      @Raptr121@Raptr1214 жыл бұрын
    • @@Raptr121 Sorry I misinterpreted the SR-3 shown as a TRX motherboard. Doing two things at once when watching the video originally lol didn't know they made AMD motherboards, must have been way way back because I started with PC hardware around when the SR2 came out and I don't recall anything AMD since then.

      @Noman1000@Noman10004 жыл бұрын
    • @@Noman1000 no worries, just how the internet is it's hard to tell if someone just got confused or they're a troll. Lol

      @Raptr121@Raptr1214 жыл бұрын
  • @8:00 Nice Picasso plot GN! Beauty from chaos!

    @GeoffSeeley@GeoffSeeley4 жыл бұрын
  • It's definitely a beneficial CPU when you a lot of tile base renderings as you said as I do on Vray and Arnold! It's a must-have!!!

    @handlewithart@handlewithart3 жыл бұрын
  • I hope you do get to go to Taiwan. A lot of people are being scared away and some events cancelled, especially in Asia. Good luck to you.

    @thomasdarby6084@thomasdarby60844 жыл бұрын
  • Interesting stuff. Youmentioned in a recent video wanting questions for the pro overclockers. It is not so much about the actual aspect of what they are doing and why it is more about the actual physics of the situation. Absolute zero is the abscence of any movement, I think, and the point of overclocking the cpu is to reduce temperatures to possibly increase the performance out of it. I am wondering what the lowest temperature you could get down to before the speed the electricity can move across transistors becomes negatively impacted and stops functioning. Also why liquid nitrogen? Is that because it only gets temps down to the point it can and using something colder like liquid helium goes too far and past the point nitrogen becomes a solid?

    @pegasusted2504@pegasusted25044 жыл бұрын
  • If anyone wasn't in on it already: it was Linus who sent the CPU, he just probably can't say because they got their's maybe not through AMD

    @CR055H41RZ@CR055H41RZ4 жыл бұрын
    • CR055H41RZ so sure?

      @BeardedHardware@BeardedHardware4 жыл бұрын
    • CR055H41RZ I’d be tempted to agree given the recent compensator build on LTT

      @icosaphilia6342@icosaphilia63424 жыл бұрын
  • Is the GN logo blender test available somewhere so I can run it myself?

    @UndercoverFerret404@UndercoverFerret4044 жыл бұрын
  • As you introduced a surface-levelness Test for CPU coolers already could it be possible to do the same for CPU Heatspreaders?

    @hanswurst8317@hanswurst83174 жыл бұрын
  • you could setup 16 x 4c/8t VMs on a server captured by stand alone screens as work station desktops. the possibilities are endless!

    @JimboJamboYT@JimboJamboYT4 жыл бұрын
  • Hey, amazing video! Thanks for the help! And thanks so much for the rich details. I would like to ask for some advice that I could learn more about the topic. I am trying to a new computer with this CPU. Could you give some advice having the following context? I hope you have the patience to read it. Lol. -> Doubt Context My actual computer does not turn anymore. I have it for around 8-9 years. So, I am trying to build a computer for the first time. I am a software engineer who will start to learn how to build games with the Unreal Engine. Since the code until the art using Blender and other heavy graphic tools that I may found to create the best game and game art that I can. I do not change computer parts if it is not really needed. Therefore, I am willing to get this 3990X CPU even though it may be extra for doing this gaming development. In the video, it was focused on being as economical as possible. However, I would like to spend a little more on this computer build. -> Parts selected - CPU: AMD Threadripper 3990X CPU - Motherboard: Asus ROG ZENITH II EXTREME ALPHA -> Doubts if it is compatible - GPU: Question!!!! Would this CPU and Motherboard work with the new Nvidia RTX 3090? - Memory: I would like to get 2x 32 memories initially. Aiming one day to achieve 256 GB. What is the fastest Ram that 3990X can handle? Its specification says DDR4 3200. However, the website "ca.pcpartpicker.com/" which check this peaces compatibility, shows in his search this memory: It says that I could use Corsair Vengeance LPX 64 GB (2 x 32 GB) DDR4-4000 CL18 Memory. I know that memories can be overclocked. In the case that this computer can hold this DDR4-4000. Would it be able to be overclocked? - Case - How would I know if a case would be able to fit these computer parts and water-cooling. And maybe a second or third Nvidia RTX 3090. Not that I would have money for that, but would I be able to do it? I want to buy this powerful computer parts. But I will buy initially the minimum. Aiming in some years to add more RAM, maybe another GPU if I think that I needed it. I do not have the intention to build a new powerful computer with a new motherboard and CPU in the following 5-10 years. Unless the computer stop working. Lol. So, thanks so much for your time and attention. Especially patience if you were able to read until this point. Lol. Sincerely, Kelvin Firmino

    @LordAthos18@LordAthos183 жыл бұрын
  • I'm still very happy with my 3950X. Bit of overkill for most stuff however. The 3990X, would be good for a Hypervisor.

    @jeffm2787@jeffm27874 жыл бұрын
  • makes wonder if you used two instances of the same program, or 2 vm to run the benchmarks on each would it be as good as a 3970x, or would it run into memory bandwidth limitation

    @asahe8392@asahe83924 жыл бұрын
  • This is awesome. So technical. I assume the compiler is MSVC?

    @oraz.@oraz.4 жыл бұрын
  • Amazing video

    @the360gaming5@the360gaming54 жыл бұрын
  • When can someone do a direct die thing with this? That's sounds like a crazy setup since this has several dies.

    @gudenau@gudenau4 жыл бұрын
  • Wasnt your last compile-benchmark accidentally fully cache dependent?

    @kommander9638@kommander96384 жыл бұрын
  • I know you guys might not see this but something to consider for rendering benchmarks is bucket/tile size. too big and you dont take enough advantage of many cores, too little and you create alot of bucket overhead, you might want to do some testing around this and find a sweet spot for your new methodology. Also I know blender is free but its not exactly the most robust 3D app on the market, testing in 3ds max with vray might prove to use the resources better. The stand alone benchmark is a bit outdated at this point. Keep up the good work guys,!

    @KenetorTV@KenetorTV4 жыл бұрын
  • You guys not doing After Effects benchmarks with things like Trapcode Suite?

    @sulphurous2656@sulphurous26564 жыл бұрын
  • All I said when I seen it delidded, PRETTY

    @Apollo-Computers@Apollo-Computers4 жыл бұрын
  • ~ 20:30 , is that an Renoir APU? Can't wait to see benchmarks of these

    @AlvaroLR@AlvaroLR4 жыл бұрын
  • I'd be interested in seeing how cores scale in Blender with Mantaflow fluid simulations, which is stock in Blender 2.82 and beyond. I've noticed that Mantaflow hits all cores, but doesn't hit them very hard, usually around 40% use in my case, so it would be useful to know how well Mantaflow scales in blender across multi-core CPUs.

    @hardroosterlabs3814@hardroosterlabs38144 жыл бұрын
  • You need to start including cfd applications fluent in your benchmark tests, am sure the benefits will be more visible

    @farzinbi@farzinbi4 жыл бұрын
  • AMD pushing testing methodology forward lol.

    @Zosu22@Zosu224 жыл бұрын
    • no just pushing youtubers past the Best Buy sales rep level of knowledge they have.

      @excitedbox5705@excitedbox57054 жыл бұрын
    • Why is that funny? I need to know. Please tell me/

      @Dennzer1@Dennzer14 жыл бұрын
  • Hey, level 1 techs benchmarked it too!

    @brianmccullough4578@brianmccullough45784 жыл бұрын
  • I'm only 16 seconds late this time, never been this early to any video before. This CPU is an absolute monster, if your workload benefits from a boatload of cores. Efficient, too. Can't wait for 7nm EUV to come out.

    @tomhsia4354@tomhsia43544 жыл бұрын
  • Good thing to know that Wendell's 3990X survived the LN2 session!

    @mattsmechanicalssi5833@mattsmechanicalssi58334 жыл бұрын
  • tip from someone who has a 3960x, even 24 cores is too much for some games, they stutter, fix: task manager->details->right click on game process->set affinity->select 4-8-16 threads (8 to simulate a 4 cores cpu recommended) select threads at the end, not the 0 nor any of the 1st ones as those are the most used by the OS and generic software, you will have to do this everytime unless you install utilities like PROCESS LASSO bitsum.com/ where you can setup profiles, we already did that with old games that had trouble running more than 2-4 cores when 8c was a brand new HEDT-only feature back in the days, still works as good in the few games I tried, I confirmed this using rivatuner on-screen fps and frametimes graphs like you can see in this unrelated demo kzhead.info/sun/i81rmLxueHaalZ8/bejne.html lines will go from "choppy" to smooth after setting affinity

    @fredEVOIX@fredEVOIX4 жыл бұрын
  • My first and only guess would be Wendell from Level1Techs. i imagine I would have seen their videos on it by now if he still had it.

    @Marc_Wolfe@Marc_Wolfe4 жыл бұрын
  • Just curious, why is there tape over the model number? Hope you guys are enjoying Taiwan!

    @NoobTube06@NoobTube064 жыл бұрын
  • you should do benchmarks in different OS's both in linux and windows where possible, im certain we will see performance differences.

    @josephdragojevich7041@josephdragojevich70414 жыл бұрын
  • I'd wish Phoronix made KZhead videos. Would you consider doing a collab with him? Make sure to have some Bavarian beer at hand ;)

    @Mattia_98@Mattia_984 жыл бұрын
  • Please add a chart with a blend demo file we can use to compare results to. Video card testing too. I know it's not going to be 1:1 but even being able to ballpark stuff like your 2060 KO results or against an older CPU you don't chart would be nice.

    @tmilker@tmilker4 жыл бұрын
  • This is the cutest 3990X review ever made

    @michelvanbriemen3459@michelvanbriemen34594 жыл бұрын
  • But can you do all this testing while on hover boards.

    @Napster60@Napster604 жыл бұрын
  • The best review

    @Beitouzi@Beitouzi4 жыл бұрын
  • I currently have the 1950x, bought it at launch. The IPC is amazing on the 3960x and 3970x. That said, i use it mainly for video editing and gaming from time to time. $1399 vs $1899. Which would you do? Serious question.

    @Joeteck@Joeteck4 жыл бұрын
  • Would it be crazy to recommend this CPU for running TWO or more instances of any processes that do not utilize 64 cores? Split your video in half and merge afterwords it to render it twice as fast? It would definitely make for an interesting test. Workflow woes would obviously be situational but for the independent contractor it has the potential to seriously increase earnings I would think.

    @evrythingis1@evrythingis14 жыл бұрын
  • Could you do some more tests on 3D rendering and simulations?

    @aluovideoanimacijainnovime9873@aluovideoanimacijainnovime98734 жыл бұрын
    • 3D rendering is predominantly done on GPUs, particularly multiples of them. The preference of most 3d artists is two 2070 supers with NVLink to stack the Vram. Blender is an AMD marketing machine and not nearly as much of an industry-standard as Maya or 3DSmax is and I have no idea why Blender is the standard for reviewers.

      @Nothinglastsforever@Nothinglastsforever4 жыл бұрын
    • @@Nothinglastsforever Thank you for the reply. The 2070 sounds the best offer price/performance. I guess Blender is free, and the new version is becoming more and more popular. Specially young artist, who would like to develop their skills, Blender offers a lot at no price. Personally, I grew up on Maya and I'm findng it difficult to switch, but I understand why a lot of young students choose Blender. Thnx for the info, stay safe.

      @aluovideoanimacijainnovime9873@aluovideoanimacijainnovime98734 жыл бұрын
  • I wonder if E-on Vue can use all of those cores. It is tiled rendering and designed to render across many computers so I think it might.

    @alterbr33d@alterbr33d4 жыл бұрын
  • You guys HAVE TO take a look at Der8auer's latest truly open loop water cooling video. Imho that thing would be a perfect addition to your 'Cute Pet' system, and it definetly falls in the 'different' category.

    @Florian.K.@Florian.K.4 жыл бұрын
  • Would switching cores off bring it closer to 3970X in the core-capped applications?

    @thepgo666@thepgo6664 жыл бұрын
  • I havent seen Wendall from Level 1 Tech's do a full review of this chip, my guess is him

    @Celician83@Celician834 жыл бұрын
  • lol at the 64 line graph 7:48

    @Collin0@Collin04 жыл бұрын
  • I don’t think anyone buying that cpu is running 32Gb of ram. I suspected most who buy it run at least 128GB or maxing it out at 256GB

    @catalystguitarguy@catalystguitarguy4 жыл бұрын
    • Erotikstudio Winkler GmbH I guess, but I’ve been running 32GB in my mostly gaming computers for 5 ish years. Just because of multitasking, multi monitor, and generally caching.

      @catalystguitarguy@catalystguitarguy4 жыл бұрын
  • In the 3990X compile benchmark, if the CPU is happily chewing past 32GB RAM and needs 64GB to truly work I'd be curious if the SSD in question was holding it back from being even faster. Or maybe windows scheduler limitations.

    @molotovdk@molotovdk4 жыл бұрын
  • besides core number the big "thing" with the 3990 is the cache layout and it's impressive tdp.

    @QOTSAPT@QOTSAPT4 жыл бұрын
  • Could you do a comparison against 4 2080tis? It would be about the same price considering you would have to buy the board and then the ram to keep up with it.

    @SuperSilvi1990@SuperSilvi19904 жыл бұрын
  • I'm a coder. I bought a 3970X. A 3970X brought my debug compiles down to 50 seconds. Release is only 68 seconds. I doubt a 3990X would help much. Portions of my build are single threaded and portions of my build are multi threaded. Less then 10 seconds of the debug build is now multi threaded. More on the release. Only a very small portion would have a chance of being sped up by more cores. It makes release builds feel almost as fast as debug builds. So the chasing down of Heisenbug might become almost enjoyable. Or at least not a grind. The $2000 saved by buying the 3970X over a 3990X, might be better spent on an $2200 Intel Optane SSD 905P. I might hold off on that purchase and stick with my Intel 750 SSD. Wait for a next generation with a PCIe NVMe 4.0 x4 over the current PCIe NVMe 3.0 x4. It might take awhile, I'm not expecting it before Intel supports NVMe 4.0 on their motherboards. I was early adopter of SSD(Intel x-25s). This current generation of 3D flash looks slower for building. Builds are file intensive with many files. The number is mind boggling. My current build area is over 18GB in size containing over 16,000 files in 1000 directors. Each version of the Qt library is 12GB and 282,0000 files. Add on to that VS 2017. etc. I figure something like 200 GB and 1,000,000+ files. So IOPS are the numbers i look at. The Optane seems to be the first real speed up since stuff like the Intel 750. There are some Samsung pro stuff worth honorable mention. -Kurt

    @k34561@k345614 жыл бұрын
  • How do you spell name of that first channel he gave shout out to ?

    @michaelstringcode7776@michaelstringcode77764 жыл бұрын
  • id like to see virtualization as a benchmark im curious to see how many virtual machines you can run with 64 cores

    @yungdookie6836@yungdookie68364 жыл бұрын
    • You also need a program that uses the CPU to run in the VM.

      @happygimp0@happygimp04 жыл бұрын
  • Based on 3d rendering, my 3900x was the optimal upper mid range budget choice for my workload.

    @mmmuck@mmmuck4 жыл бұрын
  • For the compile test would be interested to know if there's any diffference between 64gb and 128gb of ram

    @allyourfuturebelongstochina@allyourfuturebelongstochina4 жыл бұрын
  • Did you try 128gb of ram as well?

    @FreeThePenguins@FreeThePenguins4 жыл бұрын
  • Might be useful for MD in miliseconds and beat the Xeon out :D

    @mimireich@mimireich4 жыл бұрын
  • When is Adobe going to add multi core support? It is about time they got with the program.

    @lancezimmerman2734@lancezimmerman27344 жыл бұрын
  • Cute Pet needs a 3990 treat!

    @SeanLynchXY@SeanLynchXY4 жыл бұрын
    • Yah, but the 3990 alone is as big as the Cute Pet's mATX tray...

      @d00dEEE@d00dEEE4 жыл бұрын
  • on compression if you are going to compare the threadrippers with the w3175x you might aswell note that epyc doesn't have the same problem.

    @QOTSAPT@QOTSAPT4 жыл бұрын
  • Steve how about testing Machine Learning Algorhythms, there are bunch out there who scales extreme with CPU core and a lot more that scales with GPUs. Would be a nice video I guess!

    @hra4242@hra42424 жыл бұрын
  • You don't do Server benchmarks, but the multi core CPUs all ask for virtualization, containerisations and multi-user use. That would be hard to benchmark but I think it is what all users of those chips are interested.

    @berndeckenfels@berndeckenfels4 жыл бұрын
  • hello :) @ 4:45 , Steve mentions another channel to check out for linux test, but i could not find it (as i didn't get what he said exactly) can one you of you please point me in the right direction? much appreciated, thank you

    @funkymoine821@funkymoine8214 жыл бұрын
  • Glad you covered this - I got a lot of flack for not upgrading my HEDT to a 3970x (stuck with the 'budget' option of a 10980xe because it is faster in anything that doesn't use more than 36 threads which is 100% of anything I use a computer for). 3990x would have just been even worse for me.

    @kalmtraveler@kalmtraveler4 жыл бұрын
  • Most people who would need this CPU likely already know whether they need it at the moment. These are medium to large sized companies typically. Most are able to perform hardware tests of their own in order to inform future purchases.

    @SuperFriendBFG@SuperFriendBFG4 жыл бұрын
  • New font? Previous one was absolutely fine imho

    @previousslayer@previousslayer4 жыл бұрын
  • I could hardly afford my 3600 and yet I'm still watching this whole video knowing I'll never have this.

    @suzukaze8461@suzukaze84614 жыл бұрын
  • Why does the condactonaut packaging make it look like beef jerky wait, does it include beef jerky?

    @mbntr2363@mbntr23634 жыл бұрын
  • Specific workloads like 8 VMs running GIS applications would work well for this processor. They would need to max ram. Has a comparison between the 3990x and 3970x been done? Wait this isnt for server use?

    @erichoward8735@erichoward87354 жыл бұрын
  • I can't at this moment wrap my head around a browser with all of the functionality it should have needing so many lines of code that it would take more than twenty minutes to compile on a late single core. Does it have opinized code for all architecture and platform combinations in one monolithic set that needs to be compiled to one monolithic executable?

    @jasonlisonbee@jasonlisonbee4 жыл бұрын
  • I think it would make more sense to use x265 for Premiere Pro test, rather than x264 - for transcoding of the latter in the real world pretty much everyone uses GPU, while the former doesn't really have GPU acceleration available at the moment.

    @mrmarecki1@mrmarecki14 жыл бұрын
  • #AskGN I know your tests are more rigorous than most outlets, but I’m curious if you will take non CPU cooler related test methodology to the same level as the cpu coolers like for cases, cpus, etc.

    @radicalxedward8047@radicalxedward80474 жыл бұрын
    • He already does.

      @welfarestates8465@welfarestates84654 жыл бұрын
    • Welfare States No he doesn’t. Like I said, he tests more thoroughly than most other places, but he took cooler testing to an extreme degree (no pun intended lol) in order to try to remove as many variables as possible, far more than basically any other reviewer. He hasn’t spent 3 years coming up with an insane methodology, custom test equipment, etc for cases, or power supplies or any of that sort of stuff (though he started to for fans)

      @radicalxedward8047@radicalxedward80474 жыл бұрын
  • Good luck in Taiwan! Don't die!

    @Amberion@Amberion4 жыл бұрын
  • I will buy this cpu 🙂 in ten years 🙃

    @micaiahflores1592@micaiahflores15924 жыл бұрын
  • Can you mod the cute pet case to fit a TRX40 board? :D Would be epyc! :D

    @Sziklapeti@Sziklapeti4 жыл бұрын
  • Bro! The Premiere charts just have me in Awe!!! The 3950X Is the closest thing to a HEDT Chip and its still basically holding its own. A 4K60p Render in 7.9 Overclocked and 8.2 at Stock! Thats insane!!! I wonder how long the video is. Either way, Imagine having to render 10 4k60p clips for KZhead or Production on a website. Thats literally Like an hour and half (Actually a little less) for 10 videos! THATS IN-FUCKING-SANE BRO! And to imagine that its only going to get better overtime. Zen 3 coming this Christmas. 5nm over the next two years. Higher IPC, Higher Clocks. Shit is getting real. Its so exciting.

    @NBWDOUGHBOY@NBWDOUGHBOY4 жыл бұрын
  • QUESTION: to general AAA blender renders, do i go threadripper or a 5950x?

    @shakaama@shakaama3 жыл бұрын
    • If you dont need the extra pcie lanes or memory then 5950x is gonna give you amazing single core performance. Really depends how much money you want to spend. 5950x can run great on a 170-300 dollar motherboard

      @jsteezus@jsteezus2 жыл бұрын
  • Love your vids even thou most is over my head..about to finish a build and wanted your opinion or anyone here..i play sim racing titles and use vr...ive been using a prebuilt with a different card but recently just got a evga 2080 super xc hybrid for 500 here locally..its been great so far but I'm about to get a new motherboard and chip ..currently have a i56400..these sim titles are demanding on the CPU with the physics engines and wondered if a 2700x would be good for what I'm doing..figured I don't need alot of cores but a higher ghz for a few..as I heard mist of all these sims only use 2 cores..thanks un advance

    @ericcline9146@ericcline91464 жыл бұрын
    • It'll do you until the next generation Ryzen chips come out. Wouldn't pair 2700x with a 2080 super on a permanent basis. If you only plan to play games on it, get a 9700K and a fat air cooler.

      @kotekzot@kotekzot4 жыл бұрын
  • When is Threadripper 4th generation coming out?

    @ComputerXRedPillOrBluePill2@ComputerXRedPillOrBluePill22 жыл бұрын
  • @16:10 It's crazy to think that something this small can calculate at a rate of 354 BILLION instructions PER SECOND... Mind blowing!

    @jonathanlebon9705@jonathanlebon97054 жыл бұрын
  • The 3990X is very power efficient as Steve pointed out in some previous video. I think.

    @ArturoTabera@ArturoTabera4 жыл бұрын
  • I love how Wonwon has simply become a staple. ALL BOW TO WONWON!!!

    @Thedrunkautist@Thedrunkautist4 жыл бұрын
KZhead