Page 1 of 1

Understanding restart_freq option

Posted: Fri May 19, 2017 4:37 pm
by Nandan
Hi,

I have been trying to use the restart_freq = .true. option because I always
run out of time on the HPC queue.

I was wondering whether this option can be used multiple times for a single
calculation to finally complete the calculation. For example,
run the job in 4 hour queue, 4 times one after the other to complete
the interpolation.

Thanks and regards,

Nandan.

Re: Understanding restart_freq option

Posted: Tue May 23, 2017 1:09 pm
by sponce
Hello,

Yes, it is the idea.

For example,

Code: Select all

  restart = .true.
  restart_freq = 500


This means that every 500 q-points, a restart point will be written.
If you restart the calculation and keep the restart files, then it will restart from the latest restart point written.

Best,

Samuel

Re: Understanding restart_freq option

Posted: Tue May 23, 2017 2:42 pm
by Nandan
Thanks.

So in case of restarting a job third time,
should the earlier 2:

XXX.sigma_restart1

files be saved?

It seems that even if there is already a XXX.sigma_restart1 file,
it is over written when the jobs is restarted.

Regards,

Nandan.

Re: Understanding restart_freq option

Posted: Wed May 24, 2017 11:34 am
by sponce
Hello,

Yes only the last XXX.sigma_restart1 should be kept.

The file is read and then over-written at the next restart point.

Best,

Samuel

Re: Understanding restart_freq option

Posted: Thu May 25, 2017 6:22 pm
by Nandan
Hi,

Thanks you,

Nandan.