Info Dual EPYC 7601 build. Comments and questions ?

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,999
15,952
136
So, here is is. Dual EPYC 7601 32 core CPU's and 256 gig ECC registered DDR4 2666 ram, with a 1 tb NVME and a 2 tb spinner drive. 128 threads of greatness ! About $3400 for 2 CPU's, memory and the motherboard. About the same prices (and possibly performance) of the new 3970x. But I do have 8 memory channels. Then again, it only runs at 2400 mhz. But it only runs 50c 100% loaded. I can see why they run so slow after seeing the manual and the 1u heatsinks they were intended to run using.

jn4qQn2.jpg
 

Trotador22

Junior Member
Dec 5, 2019
22
3
81
Nice!, you can try with cTDP=225 but 2700Mhz is the best official all cores boost you will get.

If you want to overclock beyond specs you have to use ZenStates, go here https://forums.servethehome.com/index.php?threads/overclock-your-amd-epyc.23422/, you can go to post 115 to start seeing what you need for your setup.

My H11DSI dual EPYC 7551 is currently at 3 GHz all cores in Rosetta and also crunching Milkyway in a Radeon VII. At these clock/voltages the CPU vrm temperature becomes the critical/limiting factor. You'd better installing Supermicro Superdoctor utility to monitor all your board/cpu sensors. The problem of your setup (and mine) is that the coolers do not let room enough to put a fan powerful enough onto the Cpuvrms heatsink (between both cpu sockets). The thread linked has lots of information you will enjoy.

Your CPU utilization graph looks strange to me, in my systems it used to be a flat line at the 100% utilisation level. Rosetta is currently not stressing a lot CPUs, with WCG MCM I could not go much beyond 2.6 GHz before going above 90ºC in the CPUvrms. CPUs themselves are OK with fans at 1500rpm. So you have to check depending of the project.
 

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,999
15,952
136
Can you do

cat /proc/cpuinfo | grep MHz

In the terminal and post a screenshot of the printout?
Nothing. I also tried lower case mhz
But like I said lscpu say 2600 to 2700 consistently.

Edit: I removed the " | grep MHZ" and its just the output from lscpu. Its MHz.
 

Hitman928

Diamond Member
Apr 15, 2012
6,617
12,144
136
Nothing. I also tried lower case mhz
But like I said lscpu say 2600 to 2700 consistently.

Edit: I removed the " | grep MHZ" and its just the output from lscpu. Its MHz.

Yeah, it's case sensitive. Doing it this way will just show you what each individual core is at, was just curious if every core was boosting the same amount.
 

StefanR5R

Elite Member
Dec 10, 2016
6,422
9,940
136
This shows the current clocks of all CPUs:
cat /sys/devices/system/cpu/cpufreq/policy*/scaling_cur_freq

This condenses above output to the fastest and slowest:
cat /sys/devices/system/cpu/cpufreq/policy*/scaling_cur_freq | sort | sed -e 1b -e '$!d'

(This works only if a cpufreq driver is loaded.)

Edit, using /proc instead:
grep MHz /proc/cpuinfo | cut -d: -f2 | sort | sed -e 1b -e '$!d'
 
Last edited:

Markfw

Moderator Emeritus, Elite Member
May 16, 2002
26,999
15,952
136
This shows the current clocks of all CPUs:
cat /sys/devices/system/cpu/cpufreq/policy*/scaling_cur_freq

This condenses above output to the fastest and slowest:
cat /sys/devices/system/cpu/cpufreq/policy*/scaling_cur_freq | sort | sed -e 1b -e '$!d'

(This works only if a cpufreq driver is loaded.)
Thanks ! The slowest was like 2583 and the fastest was like 2623, very close.