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

Function reducemean

sgx_tf_ops/App/App.cpp:430–436  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

428}
429
430void reducemean(unsigned long int eid, float *input,int N, float *output){
431 sgx_status_t ret = ecall_reducemean(eid,input,N,output);
432 if (ret != SGX_SUCCESS) {
433 print_error_message(ret);
434 throw ret;
435 }
436}
437
438void reducemean_grad(unsigned long int eid, float *input,float grad,int N, float *output){
439 sgx_status_t ret = ecall_reducemean_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemeanFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected