MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / logloss_none

Function logloss_none

sgx_tf_ops/App/App.cpp:576–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

574}
575
576void 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
584void 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);

Callers

nothing calls this directly

Calls 2

ecall_logloss_noneFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected