Question

I'm running the compilation of a large program on Mac Os Big Sur on an M1 Mac Mini. I'm using cmake, ninja, with parallelism of 7 (there is 8 cores). It goes really really fast for the first five minutes, then really really slow. What is happening ? I don't hear any fan, and the small flow of air out of the computer does not seem warm at all. Any thing I can do ?

Was it helpful?

Solution

We can dig deeper to understand what’s consuming the time, but let me preface this by saying that this may be normal behavior. I’ve seen plenty of cases where a compilation or linking phase takes a long time with large or complex projects.

Given that you’re not seeing thermal pressure and CPU utilization goes down to 10% during the slow phase, however, I’m inclined to suspect that your build is getting serialized behind a blocked process.

We can start to understand what process(es) is/are blocked by taking a stackshot during build:

  1. Run the following Terminal command to enable kernel symbolication: $ sudo nvram boot-args="keepsyms=1"
  2. Reboot your machine and don’t open any apps except for Terminal.
  3. Start your build and wait until you’ve entered the slow phase.
  4. Run the following command, making sure you’re only running it during the window of time that the build is slow: $ sudo spindump -reveal -noProcessingWhileSampling
  5. After waiting for 10 seconds to collect a sample and another minute or two to symbolicate and format, you’ll get a file in /tmp/spindump.txt that contains a stackshot of every process.
  6. Upload the file to PasteBin or some equivalent place.

That will be the most direct way to begin root-causing. Also, just to rule out memory pressure, does your system “feel” sluggish to you during the build? (I suspect not, but you should run top in another Terminal window while you’re building anyway and monitor your swapouts to see if they’re growing.)

Without knowing any of the details of the code or its build process, a crude guess would be that it’s waiting on a resource (e.g. a network server that’s slow to resolve, or an indirect filesystem lookup on a slow partition/disk). If you feel like experimenting, try disabling all of your network interfaces, unmounting every partition, and disconnecting every device.

Licensed under: CC-BY-SA with attribution
Not affiliated with apple.stackexchange
scroll top