(op, grad)
| 417 | return trainer_ops.e_relu(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times) |
| 418 | @ops.RegisterGradient("ERelu") |
| 419 | def _e_relu_grad(op, grad): |
| 420 | with tf.name_scope("EReluGrad"), tf.xla.experimental.jit_scope(compile_ops=False): |
| 421 | return trainer_ops.e_relu_grad(grad,op.inputs[0],eid_low=op.get_attr("eid_low"), eid_high=op.get_attr("eid_high"),times = op.get_attr("times")) |
| 422 | |
| 423 | def en_crypt(inputs): |
| 424 | global eid,times |
nothing calls this directly
no outgoing calls
no test coverage detected