I want to make use of GPU on my M1 Mac to generate images through prompt using black-forest-labs/FLUX.1-dev. Adding the code below.
I’ve specified mps for torch.Generator but the script fails stating with error latents = torch.randn(shape, generator=generator, device=rand_device, dtype=dtype, layout=layout).to(device) RuntimeError: Placeholder storage has not been allocated on MPS device!
How can I make use of GPU to generate image?
prompt = "A cat holding a sign that says hello world"
image = pipe(
prompt,
height=1024,
width=1024,
guidance_scale=3.5,
num_inference_steps=1,
max_sequence_length=512,
generator=torch.Generator("mps").manual_seed(0)
).images[0]
image.save("flux-dev.png")
Although now it picks GPU but still fails adding error below. I’ve added pipe.enable_model_cpu_offload() but still fails. Also I’ve executed PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 still fails
RuntimeError: MPS backend out of memory (MPS allocated: 36.21 GB, other allocations: 384.00 KB, max allowed: 36.27 GB). Tried to allocate 144.00 MB on private pool. Use PYTORCH_MPS_HIGH_WATERMARK_RATIO=0.0 to disable upper limit for memory allocations (may cause system failure).