DMTCP
Modules
Example Programs
#include<stdio.h>
#include<unistd.h>
int main(int argc, char* argv[])
{
int count = 1;
while (1)
{
printf(" %2d\n",count++);
fflush(stdout);
sleep(2)
}
return 0;
}Basic Usage
Launch a Program
Restart from a checkpoint
Batch Jobs
First Submission - Launch a Program
Later Submissions - Restart from a Checkpoint
Job Array
Last updated
Was this helpful?