I do scientific computing using c++ with a couple of basic fortran routines in a Xubuntu 12.10 distribution. Things have been running well for years. All of the sudden today when messing with my code the time to complete each iteration would jump drastically half way through a run. Figuring I made a mistake I reverted to an old git version, remade the whole thing and still had the same issue. I've run the code on other computer ans the time per iteration remains constant. What could possibly be the issue?
|
closed as off topic by Karthik T, Ken White, Sam Miller, BЈовић, Anand Jan 29 at 7:35
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
Best guess: You CPU is overheating. As such, the processor throttles itself to prevent damage. Your code itself is likely what triggers the heat levels to spike. Hence, when you get "half way through a run", your CPU is sufficiently warm where it detects it needs to slow down. Check to make sure your case fans, CPU fans, and any other cooling on your machine is working correctly. Maybe just turning off the machine for a bit to let it cool down, then restarting/rebooting will resolve the issue. |
|||||
|