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

Function _e_dot_grad

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

Source from the content-addressed store, hash-verified

365 return trainer_ops.e_dot(input1,input2,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
366@ops.RegisterGradient("EDot")
367def _e_dot_grad(op, grad):
368 with tf.name_scope("EDotGrad"), tf.xla.experimental.jit_scope(compile_ops=False):
369 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]
370
371
372def e_clip(inputs,down,up):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected