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

Function exp_grad

sgx_tf_ops/App/App.cpp:358–364  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
360 if (ret != SGX_SUCCESS) {
361 print_error_message(ret);
362 throw ret;
363 }
364}
365
366void sign(unsigned long int eid, float *input,int N, float *output){
367 sgx_status_t ret = ecall_sign(eid,input,N,output);

Callers

nothing calls this directly

Calls 2

ecall_exp_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected