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

Function logloss

sgx_tf_ops/App/App.cpp:210–217  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

208}
209
210void logloss(unsigned long int eid,float *input,int N,int M,int C,float *label,float *weight,float *output){
211
212 sgx_status_t ret = ecall_logloss(eid, input,N,M,C,label,weight,output);
213 if (ret != SGX_SUCCESS) {
214 print_error_message(ret);
215 throw ret;
216 }
217}
218
219void relu_grad(unsigned long int eid,float *input,float *grad,int N,float *output){
220

Callers

nothing calls this directly

Calls 2

ecall_loglossFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected