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

Function reducemean_grad

sgx_tf_ops/App/App.cpp:438–444  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
440 if (ret != SGX_SUCCESS) {
441 print_error_message(ret);
442 throw ret;
443 }
444}
445
446void maximum(unsigned long int eid, float *input1, float *input2,int N, float *output){
447 sgx_status_t ret = ecall_maximum(eid,input1,input2,N,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemean_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected