| 348 | } |
| 349 | |
| 350 | void 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 | |
| 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); |
nothing calls this directly
no test coverage detected