コード例 #1
0
ファイル: base.py プロジェクト: weiliu620/seisflows
 def checkpoint(self, path, classname, method, args, kwargs):
     """ Writes information to disk so tasks can be executed remotely
     """
     argspath = join(path, 'kwargs')
     argsfile = join(argspath, classname+'_'+method+'.p')
     unix.mkdir(argspath)
     saveobj(argsfile, kwargs)
     save()
コード例 #2
0
ファイル: inversion_nz.py プロジェクト: seisflows/seisflows
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed following a
       break
     """
     save()
コード例 #3
0
ファイル: base.py プロジェクト: lileipku00/seisflows
 def checkpoint(self):
     save()
コード例 #4
0
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed in case of
       interruption        
     """
     save()
コード例 #5
0
 def checkpoint(self):
     """ Writes information to disk so workflow can be resumed following a
       break
     """
     save()