| 118 | { |
| 119 | public: |
| 120 | explicit EDotGradOp(OpKernelConstruction *context) : OpKernel(context) |
| 121 | { |
| 122 | OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_)); |
| 123 | OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_)); |
| 124 | OP_REQUIRES_OK(context, context->GetAttr("times", ×_)); |
| 125 | lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY); |
| 126 | OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!")); |
| 127 | } |
| 128 | void Compute(OpKernelContext *context) override |
| 129 | { |
| 130 |
nothing calls this directly
no outgoing calls
no test coverage detected