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

Function reducemean_0_grad

sgx_tf_ops/App/App.cpp:600–606  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

598}
599
600void reducemean_0_grad(unsigned long int eid, float *input,float* grad,int N,int M,int L,float *output){
601 sgx_status_t ret = ecall_reducemean_0_grad(eid,input,grad,N,M,L,output);
602 if (ret != SGX_SUCCESS) {
603 print_error_message(ret);
604 throw ret;
605 }
606}
607
608void moments(unsigned long int eid, float* input, int N,int M, int C, int L, float* mean, float* var){
609 sgx_status_t ret = ecall_moments(eid,input,N,M,C,L,mean,var);

Callers

nothing calls this directly

Calls 2

ecall_reducemean_0_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected