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

Function e_matmul2d

operators.py:99–101  ·  view source on GitHub ↗
(inputs,weight)

Source from the content-addressed store, hash-verified

97 return trainer_ops.emb_init(input_dim,output_dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32))
98
99def e_matmul2d(inputs,weight):
100 global eid,times
101 return trainer_ops.e_matmul2d(inputs,weight,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
102@ops.RegisterGradient("EMatmul2d")
103def _e_matmul2d_grad(op, grad):
104 with tf.name_scope("EMatmul2dGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected