(inputs)
| 250 | @ops.RegisterGradient("ESample") |
| 251 | |
| 252 | def e_sign(inputs): |
| 253 | global eid,times |
| 254 | return trainer_ops.e_sign(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 255 | @ops.RegisterGradient("ESign") |
| 256 | def _e_sign_grad(op, grad): |
| 257 | with tf.name_scope("ESignGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
nothing calls this directly
no outgoing calls
no test coverage detected