What happens to a running program when my computer switches to Hibernate?
Show older comments
Hey,
the question is pretty simple...what happens to a running program when my computer switches to Hibernate or standby?
My problem is that a program I wrote takes some days to finish. But I have to carry my Laptop sometimes in these days so I wonder if I can close my Laptop so that he switches into Hibernate without completly stopping my program. Does it just continue running after that? I just want to be sure that nothing happens to the program.
I already tested it with a smaller program and it finished normally.
Thank for your help Tim
Accepted Answer
More Answers (3)
Jason Ross
on 23 Aug 2012
3 votes
I largely agree with Jan. I've had the hiberation file get corrupted a number of times over the years, and losing a few days of work because of that wouldn't be great. I'd really not depend on it as a reliable mechanism and would design a method to pause computation before hibernating or sleeping the machine.
If you've got access to another machine (that stays up all the time) that you can run your work on, a better approach might be to run your program there, and use some remote access mechanism to to get to it and check on results. But even in that case, having intermediate check points you can resume from is a better approach, as any arbitrary system will need to be rebooted for one reason or another, and this could interrupt your calculations.
Running analysis for days also makes a program very difficult to debug and maintain since you have to wait days between iterations to know if your changes are "right".
You might want to also look into methods (refactoring, profiling your code, parallelizing, etc) that could decrease your run-time, too. Just because it takes days with the current implementation doesn't mean it always has to.
Tim
on 24 Aug 2012
1 vote
Sonima
on 29 Sep 2019
0 votes
Hi!
Is it possible to hiberation Win 10 with a Matlab code?
2 Comments
Walter Roberson
on 29 Sep 2019
system('powercfg /h on');
to configure hiberation being permitted. This only has to be done if you are not sure that hibernation is enabled.
system('shutdown/h /t 0');
for immediate hibernation.
Sonima
on 29 Sep 2019
Thanks Walter, appritate it.
Categories
Find more on Startup and Shutdown in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!