Update shared.py
This commit is contained in:
parent
205991df78
commit
3c6e8a5562
|
@ -171,6 +171,7 @@ class State:
|
||||||
time_start = None
|
time_start = None
|
||||||
need_restart = False
|
need_restart = False
|
||||||
server_start = None
|
server_start = None
|
||||||
|
is_hr_pass = False
|
||||||
|
|
||||||
def skip(self):
|
def skip(self):
|
||||||
self.skipped = True
|
self.skipped = True
|
||||||
|
@ -196,6 +197,7 @@ class State:
|
||||||
"job_no": self.job_no,
|
"job_no": self.job_no,
|
||||||
"sampling_step": self.sampling_step,
|
"sampling_step": self.sampling_step,
|
||||||
"sampling_steps": self.sampling_steps,
|
"sampling_steps": self.sampling_steps,
|
||||||
|
"is_hr_pass":self.is_hr_pass,
|
||||||
}
|
}
|
||||||
|
|
||||||
return obj
|
return obj
|
||||||
|
@ -214,12 +216,14 @@ class State:
|
||||||
self.interrupted = False
|
self.interrupted = False
|
||||||
self.textinfo = None
|
self.textinfo = None
|
||||||
self.time_start = time.time()
|
self.time_start = time.time()
|
||||||
|
self.is_hr_pass = False
|
||||||
|
|
||||||
devices.torch_gc()
|
devices.torch_gc()
|
||||||
|
|
||||||
def end(self):
|
def end(self):
|
||||||
self.job = ""
|
self.job = ""
|
||||||
self.job_count = 0
|
self.job_count = 0
|
||||||
|
self.is_hr_pass = False
|
||||||
|
|
||||||
devices.torch_gc()
|
devices.torch_gc()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue