Skip to content

Commit

Permalink
rename test_unet.py to test_sd15_unet.py + use test_device fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
Laurent2916 committed Sep 10, 2024
1 parent 4eceda8 commit 2c0174f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 25 deletions.
31 changes: 31 additions & 0 deletions tests/foundationals/latent_diffusion/test_sd15_unet.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import pytest
import torch

from refiners.fluxion import manual_seed
from refiners.fluxion.utils import no_grad
from refiners.foundationals.latent_diffusion import SD1UNet


@pytest.fixture(scope="module")
def refiners_sd15_unet(test_device: torch.device) -> SD1UNet:
unet = SD1UNet(in_channels=4, device=test_device)
return unet


def test_unet_context_flush(refiners_sd15_unet: SD1UNet):
manual_seed(0)
text_embedding = torch.randn(1, 77, 768, device=refiners_sd15_unet.device, dtype=refiners_sd15_unet.dtype)
timestep = torch.randint(0, 999, size=(1, 1), device=refiners_sd15_unet.device)
x = torch.randn(1, 4, 32, 32, device=refiners_sd15_unet.device, dtype=refiners_sd15_unet.dtype)

refiners_sd15_unet.set_clip_text_embedding(clip_text_embedding=text_embedding) # not flushed between forward-s

with no_grad():
refiners_sd15_unet.set_timestep(timestep=timestep)
y_1 = refiners_sd15_unet(x.clone())

with no_grad():
refiners_sd15_unet.set_timestep(timestep=timestep)
y_2 = refiners_sd15_unet(x.clone())

assert torch.equal(y_1, y_2)
25 changes: 0 additions & 25 deletions tests/foundationals/latent_diffusion/test_unet.py

This file was deleted.

0 comments on commit 2c0174f

Please sign in to comment.