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

Function reducemin_one_grad

sgx_tf_ops/App/App.cpp:721–727  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

719}
720
721void reducemin_one_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){
722 sgx_status_t ret = ecall_reducemin_one_grad(eid,input,grad,N,M,C,L,output);
723 if (ret != SGX_SUCCESS) {
724 print_error_message(ret);
725 throw ret;
726 }
727}
728
729void reducemin_zero(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){
730 sgx_status_t ret = ecall_reducemin_zero(eid,input,N,M,C,L,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemin_one_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected