forked from modelscope/ModelScope
24 lines
800 B
Python
24 lines
800 B
Python
# Copyright (c) Alibaba, Inc. and its affiliates.
|
|
from collections.abc import Mapping
|
|
|
|
import torch
|
|
|
|
|
|
def to_device(batch, device, non_blocking=False):
|
|
"""Put the data to the target cuda device just before the forward function.
|
|
Args:
|
|
batch: The batch data out of the dataloader.
|
|
device: (str | torch.device): The target device for the data.
|
|
|
|
Returns: The data to the target device.
|
|
|
|
"""
|
|
if isinstance(batch, dict) or isinstance(batch, Mapping):
|
|
return type(batch)({k: to_device(v, device) for k, v in batch.items()})
|
|
elif isinstance(batch, (tuple, list)):
|
|
return type(batch)(to_device(v, device) for v in batch)
|
|
elif isinstance(batch, torch.Tensor):
|
|
return batch.to(device, non_blocking=non_blocking)
|
|
else:
|
|
return batch
|