| 45 | { |
| 46 | public: |
| 47 | explicit EEmbTransferOp(OpKernelConstruction *context) : OpKernel(context) |
| 48 | { |
| 49 | OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_)); |
| 50 | OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_)); |
| 51 | lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY); |
| 52 | OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!")); |
| 53 | } |
| 54 | void Compute(OpKernelContext *context) override |
| 55 | { |
| 56 |
nothing calls this directly
no outgoing calls
no test coverage detected