## Example Usage ## Example import torch a = torch.tensor([10,20,30]) b = torch.tensor([2,4,5]) # Element-wise division c = torch.div(a, b) print(c) Output: tensor([5., 5., 6.])
Pytorch Torch Div
# PyTorch torch.div Function
PyTorch torch Reference Manual
`torch.div` is a function in PyTorch used to perform element-wise division.
### Function Definition
torch.div(input, other, rounding_mode, out)
## Example Usage ## Example import torch a = torch.tensor([10,20,30]) b = torch.tensor([2,4,5]) # Element-wise division c = torch.div(a, b) print(c) Output: tensor([5., 5., 6.])
PyTorch torch Reference Manual
## Example Usage ## Example import torch a = torch.tensor([10,20,30]) b = torch.tensor([2,4,5]) # Element-wise division c = torch.div(a, b) print(c) Output: tensor([5., 5., 6.])
YouTip