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

Function divi_grad

sgx_tf_ops/App/App.cpp:665–671  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

663}
664
665void divi_grad(unsigned long int eid, float* input1,float* input2, float* grad,int N1,int N2,int* shape1, int* shape2 ,float* output1,float* output2){
666 sgx_status_t ret = ecall_divi_grad(eid,input1,input2,grad,N1,N2,shape1,shape2,output1,output2);
667 if (ret != SGX_SUCCESS) {
668 print_error_message(ret);
669 throw ret;
670 }
671}
672
673void math(unsigned long int eid, float* input,float num,int N,float* output){
674 sgx_status_t ret = ecall_math(eid,input,num,N,output);

Callers

nothing calls this directly

Calls 2

ecall_divi_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected