Calculates:
output = input / other Copy
output = input / other
Gradient:
inputGrad = outputGrad / other; otherGrad = -outputGrad * input / (other * other) Copy
inputGrad = outputGrad / other; otherGrad = -outputGrad * input / (other * other)
the input tensor of any shape
the other tensor whose shape is broadcastable with the input tensor
the output tensor
Generated using TypeDoc
Calculates:
Gradient: