| 655 | |
| 656 | |
| 657 | void divi(unsigned long int eid, float* input1,float* input2, int N1, int N2,int* shape1, int* shape2 ,float* output){ |
| 658 | sgx_status_t ret = ecall_divi(eid,input1,input2,N1,N2,shape1,shape2,output); |
| 659 | if (ret != SGX_SUCCESS) { |
| 660 | print_error_message(ret); |
| 661 | throw ret; |
| 662 | } |
| 663 | } |
| 664 | |
| 665 | void 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); |
nothing calls this directly
no test coverage detected