refiners/tests/conftest.py

72 lines
2.1 KiB
Python
Raw Normal View History

2023-08-04 13:28:41 +00:00
import os
from pathlib import Path
2024-10-03 08:46:46 +00:00
from typing import Callable
import torch
2024-10-03 08:46:46 +00:00
from pytest import FixtureRequest, fixture, skip
from refiners.fluxion.utils import str_to_dtype
2023-08-04 13:28:41 +00:00
PARENT_PATH = Path(__file__).parent
2024-04-03 09:54:39 +00:00
collect_ignore = ["weights", "repos", "datasets"]
collect_ignore_glob = ["*_ref"]
2023-08-04 13:28:41 +00:00
@fixture(scope="session")
def test_device() -> torch.device:
test_device = os.getenv("REFINERS_TEST_DEVICE")
if not test_device:
return torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
return torch.device(test_device)
2024-10-03 08:46:46 +00:00
def dtype_fixture_factory(params: list[str]) -> Callable[[FixtureRequest], torch.dtype]:
@fixture(scope="session", params=params)
def dtype_fixture(request: FixtureRequest) -> torch.dtype:
torch_dtype = str_to_dtype(request.param)
if torch_dtype == torch.bfloat16 and not torch.cuda.is_bf16_supported():
skip("bfloat16 is not supported on this test device")
return torch_dtype
return dtype_fixture
test_dtype_fp32_bf16_fp16 = dtype_fixture_factory(["float32", "bfloat16", "float16"])
test_dtype_fp32_fp16 = dtype_fixture_factory(["float32", "float16"])
test_dtype_fp32_bf16 = dtype_fixture_factory(["float32", "bfloat16"])
test_dtype_fp16_bf16 = dtype_fixture_factory(["float16", "bfloat16"])
2023-08-04 13:28:41 +00:00
@fixture(scope="session")
def test_weights_path() -> Path:
from_env = os.getenv("REFINERS_TEST_WEIGHTS_DIR")
return Path(from_env) if from_env else PARENT_PATH / "weights"
2024-04-03 09:54:39 +00:00
@fixture(scope="session")
def test_datasets_path() -> Path:
from_env = os.getenv("REFINERS_TEST_DATASETS_DIR")
return Path(from_env) if from_env else PARENT_PATH / "datasets"
@fixture(scope="session")
def test_repos_path() -> Path:
from_env = os.getenv("REFINERS_TEST_REPOS_DIR")
return Path(from_env) if from_env else PARENT_PATH / "repos"
2023-08-04 13:28:41 +00:00
@fixture(scope="session")
def test_e2e_path() -> Path:
return PARENT_PATH / "e2e"
2023-08-29 15:53:39 +00:00
@fixture(scope="session")
def test_textual_inversion_path() -> Path:
return PARENT_PATH / "foundationals" / "clip" / "test_concepts_ref"
@fixture(scope="session")
def test_sam_path() -> Path:
return PARENT_PATH / "foundationals" / "segment_anything"