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

Method EBatchNormGradOp

en_ops/e_batch_norm.cc:109–117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

107{
108public:
109 explicit EBatchNormGradOp(OpKernelConstruction *context) : OpKernel(context)
110 {
111 context->GetAttr("epsilon", &epsilon_);
112 OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_));
113 OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_));
114 OP_REQUIRES_OK(context, context->GetAttr("times", &times_));
115 lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY);
116 OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!"));
117 }
118 void Compute(OpKernelContext *context) override
119 {
120

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected