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

Function maximum

sgx_tf_ops/App/App.cpp:446–452  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

444}
445
446void maximum(unsigned long int eid, float *input1, float *input2,int N, float *output){
447 sgx_status_t ret = ecall_maximum(eid,input1,input2,N,output);
448 if (ret != SGX_SUCCESS) {
449 print_error_message(ret);
450 throw ret;
451 }
452}
453
454void maximum_grad(unsigned long int eid, float *input1, float *input2, float *grad,int N, float *output1, float *output2){
455 sgx_status_t ret = ecall_maximum_grad(eid,input1,input2,grad,N,output1,output2);

Callers

nothing calls this directly

Calls 2

ecall_maximumFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected