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

Function reducemin_zero

sgx_tf_ops/App/App.cpp:729–735  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
731 if (ret != SGX_SUCCESS) {
732 print_error_message(ret);
733 throw ret;
734 }
735}
736
737void reducemin_zero_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){
738 sgx_status_t ret = ecall_reducemin_zero_grad(eid,input,grad,N,M,C,L,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemin_zeroFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected