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

Function log1

sgx_tf_ops/App/App.cpp:334–340  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334void log1(unsigned long int eid, float *input,int N, float *output){
335 sgx_status_t ret = ecall_log(eid,input,N,output);
336 if (ret != SGX_SUCCESS) {
337 print_error_message(ret);
338 throw ret;
339 }
340}
341
342void log_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
343 sgx_status_t ret = ecall_log_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_logFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected