(op, grad)
| 262 | return trainer_ops.e_softmax(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 263 | @ops.RegisterGradient("ESoftmax") |
| 264 | def _e_softmax_grad(op, grad): |
| 265 | with tf.name_scope("ESoftmaxGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
| 266 | return trainer_ops.e_softmax_grad(grad,op.inputs[0],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times")) |
| 267 | |
| 268 | def e_softplus(inputs): |
| 269 | global eid,times |
nothing calls this directly
no outgoing calls
no test coverage detected