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

Function _e_dot_grad

model_demo/DeepCrossing/operators.py:369–371  ·  view source on GitHub ↗
(op, grad)

Source from the content-addressed store, hash-verified

367 return trainer_ops.e_dot(input1,input2,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
368@ops.RegisterGradient("EDot")
369def _e_dot_grad(op, grad):
370 with tf.name_scope("EDotGrad"), tf.xla.experimental.jit_scope(compile_ops=False):
371 return trainer_ops.e_dot_grad(grad,op.inputs[0],op.inputs[1],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))[0],trainer_ops.e_dot_grad(grad,op.inputs[0],op.inputs[1],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))[1]
372
373
374def e_clip(inputs,down,up):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected