| 582 | } |
| 583 | |
| 584 | void logloss_none_grad(unsigned long int eid, float *input,float *grad,int N,float *label,float *weight,float *grad_x,float *grad_w,float *grad_l){ |
| 585 | sgx_status_t ret = ecall_logloss_none_grad(eid,input,grad,N,label,weight,grad_x,grad_w,grad_l); |
| 586 | if (ret != SGX_SUCCESS) { |
| 587 | print_error_message(ret); |
| 588 | throw ret; |
| 589 | } |
| 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); |
nothing calls this directly
no test coverage detected