diff --git a/ldm/generate.py b/ldm/generate.py index a5f687df80..f14c1dc868 100644 --- a/ldm/generate.py +++ b/ldm/generate.py @@ -361,12 +361,14 @@ class Generate: print( f'>> {len(results)} image(s) generated in', '%4.2fs' % (toc - tic) ) - print( - f'>> Max VRAM used for this generation:', - '%4.2fG' % (torch.cuda.max_memory_allocated() / 1e9), - ) + if torch.cuda.is_available() and self.device.type == 'cuda': + print( + f'>> Max VRAM used for this generation:', + '%4.2fG.' % (torch.cuda.max_memory_allocated() / 1e9), + 'Current VRAM utilization:' + '%4.2fG' % (torch.cuda.memory_allocated() / 1e9), + ) - if self.session_peakmem: self.session_peakmem = max( self.session_peakmem, torch.cuda.max_memory_allocated() ) diff --git a/scripts/dream.py b/scripts/dream.py index 618f723c2f..90699ef6f4 100755 --- a/scripts/dream.py +++ b/scripts/dream.py @@ -130,8 +130,11 @@ def main_loop(t2i, outdir, prompt_as_dir, parser, infile): command = get_next_command(infile) except EOFError: done = True - break - + continue + except KeyboardInterrupt: + done = True + continue + # skip empty lines if not command.strip(): continue @@ -182,6 +185,7 @@ def main_loop(t2i, outdir, prompt_as_dir, parser, infile): continue if opt.seed is not None and opt.seed < 0: # retrieve previous value! try: + print(f'last seeds = {last_seeds}, opt.seed={opt.seed}') opt.seed = last_seeds[opt.seed] print(f'reusing previous seed {opt.seed}') except IndexError: @@ -239,8 +243,8 @@ def main_loop(t2i, outdir, prompt_as_dir, parser, infile): # Here is where the images are actually generated! try: file_writer = PngWriter(current_outdir) - prefix = file_writer.unique_prefix() - seeds = set() + prefix = file_writer.unique_prefix() + seeds = list() results = [] # list of filename, prompt pairs grid_images = dict() # seed -> Image, only used if `do_grid` def image_writer(image, seed, upscaled=False): @@ -272,7 +276,7 @@ def main_loop(t2i, outdir, prompt_as_dir, parser, infile): # only append to results if we didn't overwrite an earlier output results.append([path, metadata_prompt]) - seeds.add(seed) + seeds.append(seed) t2i.prompt2image(image_callback=image_writer, **vars(opt))