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

Function reducemax_one

sgx_tf_ops/App/App.cpp:510–516  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

508}
509
510void reducemax_one(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){
511 sgx_status_t ret = ecall_reducemax_one(eid,input,N,M,C,L,output);
512 if (ret != SGX_SUCCESS) {
513 print_error_message(ret);
514 throw ret;
515 }
516}
517
518void reducemax_one_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){
519 sgx_status_t ret = ecall_reducemax_one_grad(eid,input,grad,N,M,C,L,output);

Callers

nothing calls this directly

Calls 2

ecall_reducemax_oneFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected