File size: 274 Bytes
b6c45cb |
1 2 3 4 5 6 7 8 9 10 |
from .torch_utils import tensors_to_device, to_cuda
# The functions above were all in asteroid/utils.py before refactoring into
# asteroid/utils/*_utils.py files. They are imported for backward compatibility.
__all__ = [
"tensors_to_device",
"to_cuda",
]
|