Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tests/test_stitch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@
config, preserving the top singular subspace (the microkimi
closed-form bridge)."""

import torch
import pytest

from src.gpu.modal_distill import svd_stitch_state
pytest.importorskip("torch")
import torch # noqa: E402

from src.gpu.modal_distill import svd_stitch_state # noqa: E402


def _wide_narrow():
Expand Down
Loading