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

Function e_dot

operators.py:363–365  ·  view source on GitHub ↗
(input1,input2)

Source from the content-addressed store, hash-verified

361 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"))
362
363def e_dot(input1,input2):
364 global eid,times
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):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected