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

Function e_matmul2d

model_demo/DeepCrossing/operators.py:101–103  ·  view source on GitHub ↗
(inputs,weight)

Source from the content-addressed store, hash-verified

99 return trainer_ops.emb_init(input_dim,output_dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32))
100
101def e_matmul2d(inputs,weight):
102 global eid,times
103 return trainer_ops.e_matmul2d(inputs,weight,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
104@ops.RegisterGradient("EMatmul2d")
105def _e_matmul2d_grad(op, grad):
106 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