import os import random import uuid import json import gradio as gr import numpy as np from PIL import Image import torch from diffusers import StableDiffusionXLPipeline, EulerAncestralDiscreteScheduler DESCRIPTION = "A Stable Diffusion XL demo running on CPU." MAX_SEED = np.iinfo(np.int32).max CACHE_EXAMPLES = os.getenv("CACHE_EXAMPLES", "1") == "1" MAX_IMAGE_SIZE = int(os.getenv("MAX_IMAGE_SIZE", "4096")) USE_TORCH_COMPILE = os.getenv("USE_TORCH_COMPILE", "0") == "1" ENABLE_CPU_OFFLOAD = os.getenv("ENABLE_CPU_OFFLOAD", "0") == "1" # Set device to CPU explicitly device = torch.device("cpu") # Load pipeline and scheduler for CPU pipe = StableDiffusionXLPipeline.from_pretrained( "sd-community/sdxl-flash", torch_dtype=torch.float32, # Use float32 for CPU use_safetensors=True, add_watermarker=False ) pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config) pipe.to(device) # Move the model to CPU def save_image(img): unique_name = str(uuid.uuid4()) + ".png" img.save(unique_name) return unique_name def randomize_seed_fn(seed: int, randomize_seed: bool) -> int: if randomize_seed: seed = random.randint(0, MAX_SEED) return seed def generate( prompt: str, negative_prompt: str = "", use_negative_prompt: bool = False, seed: int = 0, width: int = 1024, height: int = 1024, guidance_scale: float = 3, num_inference_steps: int = 25, randomize_seed: bool = False, use_resolution_binning: bool = True, progress=gr.Progress(track_tqdm=True), ): seed = int(randomize_seed_fn(seed, randomize_seed)) generator = torch.Generator(device=device).manual_seed(seed) options = { "prompt": prompt, "negative_prompt": negative_prompt if use_negative_prompt else None, "width": width, "height": height, "guidance_scale": guidance_scale, "num_inference_steps": num_inference_steps, "generator": generator, "use_resolution_binning": use_resolution_binning, "output_type": "pil", } # Generate images images = pipe(**options).images image_paths = [save_image(img) for img in images] return image_paths, seed css = ''' .gradio-container { max-width: 700px !important; } h1 { text-align: center; } footer { visibility: hidden; } ''' with gr.Blocks(css=css) as demo: gr.Markdown("""