(op, grad)
| 176 | return trainer_ops.e_math(inputs,num,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 177 | @ops.RegisterGradient("EMath") |
| 178 | def _e_math_grad(op, grad): |
| 179 | with tf.name_scope("EMathGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
| 180 | return grad |
| 181 | |
| 182 | def e_matadd(input1,input2): |
| 183 | global eid,times |
nothing calls this directly
no outgoing calls
no test coverage detected