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

Function exp1

sgx_tf_ops/App/App.cpp:350–356  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

348}
349
350void exp1(unsigned long int eid, float *input,int N, float *output){
351 sgx_status_t ret = ecall_exp(eid,input,N,output);
352 if (ret != SGX_SUCCESS) {
353 print_error_message(ret);
354 throw ret;
355 }
356}
357
358void exp_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
359 sgx_status_t ret = ecall_exp_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_expFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected