mirror of
https://github.com/finegrain-ai/refiners.git
synced 2024-11-09 23:12:02 +00:00
parent
6ddd901767
commit
46dd710076
|
@ -3,7 +3,7 @@ import pytest
|
|||
from warnings import warn
|
||||
|
||||
import refiners.fluxion.layers as fl
|
||||
from refiners.fluxion.layers.chain import Distribute
|
||||
from refiners.fluxion.layers.chain import ChainError, Distribute
|
||||
|
||||
|
||||
def test_converter_device_single_tensor(test_device: torch.device) -> None:
|
||||
|
@ -66,5 +66,5 @@ def test_converter_no_parent_device_or_dtype() -> None:
|
|||
|
||||
tensor = torch.randn(1, 1)
|
||||
|
||||
with pytest.raises(expected_exception=ValueError):
|
||||
with pytest.raises(expected_exception=ChainError):
|
||||
chain(tensor)
|
||||
|
|
Loading…
Reference in a new issue