| 774 | } |
| 775 | |
| 776 | void where_gequal(unsigned long int eid,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output){ |
| 777 | sgx_status_t ret = ecall_where_gequal(eid,input1,input2,cond1,cond2,N,n1,n2,output); |
| 778 | if (ret != SGX_SUCCESS) { |
| 779 | print_error_message(ret); |
| 780 | throw ret; |
| 781 | } |
| 782 | } |
| 783 | |
| 784 | void where_gequal_grad(unsigned long int eid,float* grad,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output1,float* output2){ |
| 785 | sgx_status_t ret = ecall_where_gequal_grad(eid,grad,input1,input2,cond1,cond2,N,n1,n2,output1,output2); |
nothing calls this directly
no test coverage detected