(inputs,scale,offset,mean,variance,epsilon)
| 379 | |
| 380 | |
| 381 | def e_batch_norm(inputs,scale,offset,mean,variance,epsilon): |
| 382 | global eid,times |
| 383 | return trainer_ops.e_batch_norm(inputs,scale,offset,mean,variance,epsilon=epsilon,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 384 | @ops.RegisterGradient("EBatchNorm") |
| 385 | def _e_batch_norm_grad(op, grad): |
| 386 | with tf.name_scope("EBatchNormGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
nothing calls this directly
no outgoing calls
no test coverage detected