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

Function _emb_convert_grad

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

Source from the content-addressed store, hash-verified

408 return trainer_ops.emb_convert(inputs,num=num,dim=dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
409@ops.RegisterGradient("EmbConvert")
410def _emb_convert_grad(op, grad):
411 with tf.name_scope("EmbConvertGrad"), tf.xla.experimental.jit_scope(compile_ops=False):
412 return trainer_ops.emb_convert_grad(grad,num=op.get_attr("num"),dim=op.get_attr("dim"),eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))
413
414
415def e_relu(inputs):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected