| 590 | } |
| 591 | |
| 592 | void reducemean_0(unsigned long int eid, float *input,int N,int M,int L,float *output){ |
| 593 | sgx_status_t ret = ecall_reducemean_0(eid,input,N,M,L,output); |
| 594 | if (ret != SGX_SUCCESS) { |
| 595 | print_error_message(ret); |
| 596 | throw ret; |
| 597 | } |
| 598 | } |
| 599 | |
| 600 | void reducemean_0_grad(unsigned long int eid, float *input,float* grad,int N,int M,int L,float *output){ |
| 601 | sgx_status_t ret = ecall_reducemean_0_grad(eid,input,grad,N,M,L,output); |
nothing calls this directly
no test coverage detected