| 574 | } |
| 575 | |
| 576 | void logloss_none(unsigned long int eid, float *input,int N,float *label,float *weight,float *output){ |
| 577 | sgx_status_t ret = ecall_logloss_none(eid,input,N,label,weight,output); |
| 578 | if (ret != SGX_SUCCESS) { |
| 579 | print_error_message(ret); |
| 580 | throw ret; |
| 581 | } |
| 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); |
nothing calls this directly
no test coverage detected