(inputs)
| 287 | @ops.RegisterGradient("EOneHot") |
| 288 | |
| 289 | def e_moments(inputs): |
| 290 | global eid,times |
| 291 | return trainer_ops.e_moments(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)[0],trainer_ops.e_moments(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)[1] |
| 292 | @ops.RegisterGradient("EMoments") |
| 293 | def _e_moments_grad(op, grad1,grad2): |
| 294 | with tf.name_scope("EMomentsGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
nothing calls this directly
no outgoing calls
no test coverage detected