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

Function _ceshi_grad

operators.py:402–404  ·  view source on GitHub ↗
(op, grad)

Source from the content-addressed store, hash-verified

400 return trainer_ops.ceshi(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32))
401@ops.RegisterGradient("Ceshi")
402def _ceshi_grad(op, grad):
403 with tf.name_scope("CeshiGrad"), tf.xla.experimental.jit_scope(compile_ops=False):
404 return trainer_ops.ceshi_grad(grad,eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"))
405
406def emb_convert(inputs,num,dim):
407 global eid,times

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected