| 316 | } |
| 317 | |
| 318 | void abs1(unsigned long int eid, float *input,int N, float *output){ |
| 319 | sgx_status_t ret = ecall_abs(eid,input,N,output); |
| 320 | if (ret != SGX_SUCCESS) { |
| 321 | print_error_message(ret); |
| 322 | throw ret; |
| 323 | } |
| 324 | } |
| 325 | |
| 326 | void abs_grad(unsigned long int eid, float *input, float *grad,int N, float *output){ |
| 327 | sgx_status_t ret = ecall_abs_grad(eid,input,grad,N,output); |
nothing calls this directly
no test coverage detected