Spaces:
Runtime error
Runtime error
File size: 345 Bytes
21dcd64 |
1 2 3 4 5 6 7 8 9 10 |
from DeepFakeAI.execution_helper import encode_execution_providers, decode_execution_providers
def test_encode_execution_providers() -> None:
assert encode_execution_providers([ 'CPUExecutionProvider' ]) == [ 'cpu' ]
def test_decode_execution_providers() -> None:
assert decode_execution_providers([ 'cpu' ]) == [ 'CPUExecutionProvider' ]
|