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

Function minimum

sgx_tf_ops/App/App.cpp:462–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

460}
461
462void minimum(unsigned long int eid, float *input1, float *input2,int N, float *output){
463 sgx_status_t ret = ecall_minimum(eid,input1,input2,N,output);
464 if (ret != SGX_SUCCESS) {
465 print_error_message(ret);
466 throw ret;
467 }
468}
469
470void minimum_grad(unsigned long int eid, float *input1, float *input2, float *grad,int N, float *output1, float *output2){
471 sgx_status_t ret = ecall_minimum_grad(eid,input1,input2,grad,N,output1,output2);

Callers

nothing calls this directly

Calls 2

ecall_minimumFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected