What happens to a running program when my computer switches to Hibernate?
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (3)
Jason Ross
el 23 de Ag. de 2012
3 votos
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
el 24 de Ag. de 2012
1 voto
Sonima
el 29 de Sept. de 2019
0 votos
Hi!
Is it possible to hiberation Win 10 with a Matlab code?
2 comentarios
Walter Roberson
el 29 de Sept. de 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
el 29 de Sept. de 2019
Thanks Walter, appritate it.
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!