(input1,input2)
| 180 | return grad |
| 181 | |
| 182 | def e_matadd(input1,input2): |
| 183 | global eid,times |
| 184 | return trainer_ops.e_matadd(input1,input2,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 185 | @ops.RegisterGradient("EMatadd") |
| 186 | def _e_matadd_grad(op, grad): |
| 187 | with tf.name_scope("EMataddGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
nothing calls this directly
no outgoing calls
no test coverage detected