Beispiel #1
0
def _SqrtGrad(op, grad):
  y = op.outputs[0]  # y = x^(1/2)
  return gen_math_ops._sqrt_grad(y, grad)
Beispiel #2
0
def _SqrtGrad(op, grad):
    y = op.outputs[0]  # y = x^(1/2)
    return gen_math_ops._sqrt_grad(y, grad)
Beispiel #3
0
def _SqrtGrad(op, grad):
    y = op.outputs[0]  # y = x^(1/2)
    # pylint: disable=protected-access
    return gen_math_ops._sqrt_grad(y, grad)
Beispiel #4
0
def _SqrtGrad(op, grad):
  y = op.outputs[0]  # y = x^(1/2)
  # pylint: disable=protected-access
  return gen_math_ops._sqrt_grad(y, grad)