MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / e_batch_norm

Function e_batch_norm

operators.py:381–383  ·  view source on GitHub ↗
(inputs,scale,offset,mean,variance,epsilon)

Source from the content-addressed store, hash-verified

379
380
381def 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")
385def _e_batch_norm_grad(op, grad):
386 with tf.name_scope("EBatchNormGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected