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

Function e_leakyrelu

operators.py:334–336  ·  view source on GitHub ↗
(inputs,alpha)

Source from the content-addressed store, hash-verified

332@ops.RegisterGradient("ELessEqual")
333
334def e_leakyrelu(inputs,alpha):
335 global eid,times
336 return trainer_ops.e_leakyrelu(inputs,alpha=alpha,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
337@ops.RegisterGradient("ELeakyrelu")
338def _e_leakyrelu_grad(op, grad):
339 with tf.name_scope("ELeakyreluGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected