Rate this Page

torch.Tensor.map_#

Tensor.map_(tensor, callable)#

Applies callable for each element in self tensor and the given tensor and stores the results in self tensor. self tensor and the given tensor must be broadcastable.

The callable should have the signature:

def callable(a, b) -> number