| 32 | .Output("output: float"); |
| 33 | |
| 34 | class ESoftplusOp : public OpKernel |
| 35 | { |
| 36 | public: |
| 37 | explicit ESoftplusOp(OpKernelConstruction *context) : OpKernel(context) |
| 38 | { |
| 39 | OP_REQUIRES_OK(context, context->GetAttr("eid_low", &eid_low_)); |
| 40 | OP_REQUIRES_OK(context, context->GetAttr("eid_high", &eid_high_)); |
| 41 | OP_REQUIRES_OK(context, context->GetAttr("times", ×_)); |
| 42 | lib = dlopen("/home/zhangyan/jhrsgx/privacy_test/privacy_tf/sgx_tf_ops/sgx.so", RTLD_LAZY); |
| 43 | OP_REQUIRES(context, lib != NULL, errors::Unknown("Unable to load sgx.so!")); |
| 44 | } |
| 45 | void Compute(OpKernelContext *context) override |
| 46 | { |
| 47 | const Tensor &input = context->input(0); |
| 48 | auto input_flat = input.flat<float>(); |
| 49 | |
| 50 | const TensorShape &input_shape = input.shape(); |
| 51 | |
| 52 | Tensor *output = NULL; |
| 53 | OP_REQUIRES_OK(context, context->allocate_output(0, input_shape, &output)); |
| 54 | auto output_flat = output->flat<float>(); |
| 55 | int N = input_flat.size() / times_; |
| 56 | |
| 57 | unsigned long int eid_ = (eid_high_ << 32) + eid_low_; |
| 58 | typedef void (*function)(unsigned long int eid, float *input, int N, float *output); |
| 59 | dlerror(); |
| 60 | function softplus_kernel = (function)dlsym(lib, "softplus"); |
| 61 | const char *dlsym_error = dlerror(); |
| 62 | OP_REQUIRES(context, !dlsym_error, errors::Unknown("loading of softplus failed: ", dlsym_error)); |
| 63 | softplus_kernel(eid_, (float *)input_flat.data(), N, (float *)output_flat.data()); |
| 64 | }; |
| 65 | |
| 66 | private: |
| 67 | void *lib; |
| 68 | int64 eid_low_; |
| 69 | int64 eid_high_; |
| 70 | int64 times_; |
| 71 | }; |
| 72 | REGISTER_KERNEL_BUILDER(Name("ESoftplus").Device(DEVICE_CPU), ESoftplusOp); |
| 73 | |
| 74 | class ESoftplusGradOp : public OpKernel |
nothing calls this directly
no outgoing calls
no test coverage detected