| 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); |
| 602 | if (ret != SGX_SUCCESS) { |
| 603 | print_error_message(ret); |
| 604 | throw ret; |
| 605 | } |
| 606 | } |
| 607 | |
| 608 | void moments(unsigned long int eid, float* input, int N,int M, int C, int L, float* mean, float* var){ |
| 609 | sgx_status_t ret = ecall_moments(eid,input,N,M,C,L,mean,var); |
nothing calls this directly
no test coverage detected