| 428 | } |
| 429 | |
| 430 | void reducemean(unsigned long int eid, float *input,int N, float *output){ |
| 431 | sgx_status_t ret = ecall_reducemean(eid,input,N,output); |
| 432 | if (ret != SGX_SUCCESS) { |
| 433 | print_error_message(ret); |
| 434 | throw ret; |
| 435 | } |
| 436 | } |
| 437 | |
| 438 | void reducemean_grad(unsigned long int eid, float *input,float grad,int N, float *output){ |
| 439 | sgx_status_t ret = ecall_reducemean_grad(eid,input,grad,N,output); |
nothing calls this directly
no test coverage detected