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

Method Compute

en_ops/e_softmax.cc:45–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 int M = input_shape.dim_size(0) / times_;
57 int C = input_shape.dim_size(1);
58
59 unsigned long int eid_ = (eid_high_ << 32) + eid_low_;
60 typedef void (*function)(unsigned long int eid, float *input, int N, int M, int C, float *output);
61 dlerror();
62 function softmax_kernel = (function)dlsym(lib, "softmax");
63 const char *dlsym_error = dlerror();
64 OP_REQUIRES(context, !dlsym_error, errors::Unknown("loading of softmax failed: ", dlsym_error));
65 softmax_kernel(eid_, (float *)input_flat.data(), N, M, C, (float *)output_flat.data());
66 };
67
68private:
69 void *lib;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected