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

Function reducemax_zero

sgx_tf_ops/App/App.cpp:697–703  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695}
696
697void reducemax_zero(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){
698 sgx_status_t ret = ecall_reducemax_zero(eid,input,N,M,C,L,output);
699 if (ret != SGX_SUCCESS) {
700 print_error_message(ret);
701 throw ret;
702 }
703}
704
705void reducemax_zero_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){
706 sgx_status_t ret = ecall_reducemax_zero_grad(eid,input,grad,N,M,C,L,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemax_zeroFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected