(input1,input2)
| 361 | return trainer_ops.e_exp_grad(grad,op.inputs[0],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times")) |
| 362 | |
| 363 | def e_dot(input1,input2): |
| 364 | global eid,times |
| 365 | return trainer_ops.e_dot(input1,input2,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 366 | @ops.RegisterGradient("EDot") |
| 367 | def _e_dot_grad(op, grad): |
| 368 | with tf.name_scope("EDotGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
nothing calls this directly
no outgoing calls
no test coverage detected