(op, grad)
| 408 | return trainer_ops.emb_convert(inputs,num=num,dim=dim,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 409 | @ops.RegisterGradient("EmbConvert") |
| 410 | def _emb_convert_grad(op, grad): |
| 411 | with tf.name_scope("EmbConvertGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
| 412 | return trainer_ops.emb_convert_grad(grad,num=op.get_attr("num"),dim=op.get_attr("dim"),eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times")) |
| 413 | |
| 414 | |
| 415 | def e_relu(inputs): |
nothing calls this directly
no outgoing calls
no test coverage detected