7 ms·
How would it scale with the number of cores? 3950x should make relatively short work of it, or wouldn't it?
by correcthorse123 5y ago
How would it scale with the number of cores? 3950x should make relatively short work of it, or wouldn't it?
- danvittegleo 5y agoIt scales amazingly well with the number of cores you throw at it. Definitely the 3950x would work great.
- BorisMelnik 5y agothat should tear through it. the linux kernel for instance compiles much better with higher number of cores
- foresto 5y agoI would expect it to scale pretty well, at least until you reach the limits of your disk and buffer RAM. The build process supports the -j option just like make. You can use -j N+1 if you want to keep all your cores busy, or -j N-1 to keep your machine more responsive during the build, or nice and -j 1 if you're in no hurry and your machine has more important tasks. (Actually, I think reasonable defaults for these might already be part of the build scripts, but it has been a while since I looked.)