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

Function en_crypt

operators.py:423–425  ·  view source on GitHub ↗
(inputs)

Source from the content-addressed store, hash-verified

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
423def en_crypt(inputs):
424 global eid,times
425 return trainer_ops.en_crypt(inputs,eid_low=(eid&0xFFFFFFFF),eid_high=(eid>>32),times=times)
426@ops.RegisterGradient("EnCrypt")
427def _en_crypt_grad(op, grad):
428 with tf.name_scope("EnCryptGrad"), tf.xla.experimental.jit_scope(compile_ops=False):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected