Hello everyone,
I've been happily running a cMP 4.1 -> 5.1 with Mojave now, and the following hardware setup:
- 2x X5675
- 64GB ECC RAM (6 sticks)
- RX580 (Orinoco, flashed MacVidCards)
- TB3, NVMe
- Dual boot Windows 10 and Mojave.
When I boot into Windows, the CPU throttles down when the computer is idle, helping reduce power consumption. I can also see that it turbo boots to 3.3GHz when I push the system hard. In Mac OS, when I run the following code:
I always get that the computer is running at 3.06 GHz. I can't use the Intel Power Gadget, because it is not compatible with dual socket systems. My questions are:
- Does OpenCore affect the computer's ability to throttle down? I don't want to uninstall OpenCore just to test my hypothesis.
- If that's the case, are there any OpenCore flags that I could adjust?
- When I run the code above, does it upspeed the CPU to execute?
This is not serious and I can live without it, but it would be very nice to save 5-10W. My OpenCore configuration is attached.
Thanks, as always.
I've been happily running a cMP 4.1 -> 5.1 with Mojave now, and the following hardware setup:
- 2x X5675
- 64GB ECC RAM (6 sticks)
- RX580 (Orinoco, flashed MacVidCards)
- TB3, NVMe
- Dual boot Windows 10 and Mojave.
When I boot into Windows, the CPU throttles down when the computer is idle, helping reduce power consumption. I can also see that it turbo boots to 3.3GHz when I push the system hard. In Mac OS, when I run the following code:
Code:
#include <stdio.h>
#include <stdint.h>
#include <unistd.h>
uint64_t rdtsc(void)
{
uint32_t ret0[2];
__asm__ __volatile__("rdtsc" : "=a"(ret0[0]), "=d"(ret0[1]));
return ((uint64_t)ret0[1] << 32) | ret0[0];
}
int main(int argc, const char * argv[])
{
uint64_t startCount = rdtsc();
sleep(1);
uint64_t endCount = rdtsc();
printf("Clocks per second: %llu", endCount - startCount);
return 0;
}
I always get that the computer is running at 3.06 GHz. I can't use the Intel Power Gadget, because it is not compatible with dual socket systems. My questions are:
- Does OpenCore affect the computer's ability to throttle down? I don't want to uninstall OpenCore just to test my hypothesis.
- If that's the case, are there any OpenCore flags that I could adjust?
- When I run the code above, does it upspeed the CPU to execute?
This is not serious and I can live without it, but it would be very nice to save 5-10W. My OpenCore configuration is attached.
Thanks, as always.