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

Function dot_grad

sgx_tf_ops/App/App.cpp:648–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

646}
647
648void dot_grad(unsigned long int eid, float* input1,float* input2, float* grad,int N1,int N2,int* shape1, int* shape2,int ndims ,float* output1,float* output2){
649 sgx_status_t ret = ecall_dot_grad(eid,input1,input2,grad,N1,N2,shape1,shape2,ndims,output1,output2);
650 if (ret != SGX_SUCCESS) {
651 print_error_message(ret);
652 throw ret;
653 }
654}
655
656
657void divi(unsigned long int eid, float* input1,float* input2, int N1, int N2,int* shape1, int* shape2 ,float* output){

Callers

nothing calls this directly

Calls 2

ecall_dot_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected