| 356 | } |
| 357 | |
| 358 | void 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 | |
| 366 | void sign(unsigned long int eid, float *input,int N, float *output){ |
| 367 | sgx_status_t ret = ecall_sign(eid,input,N,output); |
nothing calls this directly
no test coverage detected