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

Function e_dot

model_demo/DeepCrossing/operators.py:365–367  ·  view source on GitHub ↗
(input1,input2)

Source from the content-addressed store, hash-verified

363 return trainer_ops.e_exp_grad(grad,op.inputs[0],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times"))
364
365def e_dot(input1,input2):
366 global eid,times
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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected