| 140 | { |
| 141 | public: |
| 142 | explicit DeCryptGradOp(OpKernelConstruction *context) : OpKernel(context) |
| 143 | { |
| 144 | OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_)); |
| 145 | OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_)); |
| 146 | OP_REQUIRES_OK(context, context->GetAttr("times", ×_)); |
| 147 | lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY); |
| 148 | OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!")); |
| 149 | } |
| 150 | void Compute(OpKernelContext *context) override |
| 151 | { |
| 152 |
nothing calls this directly
no outgoing calls
no test coverage detected