| 790 | } |
| 791 | |
| 792 | void where_greater(unsigned long int eid,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output){ |
| 793 | sgx_status_t ret = ecall_where_greater(eid,input1,input2,cond1,cond2,N,n1,n2,output); |
| 794 | if (ret != SGX_SUCCESS) { |
| 795 | print_error_message(ret); |
| 796 | throw ret; |
| 797 | } |
| 798 | } |
| 799 | |
| 800 | void where_greater_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){ |
| 801 | sgx_status_t ret = ecall_where_greater_grad(eid,grad,input1,input2,cond1,cond2,N,n1,n2,output1,output2); |
nothing calls this directly
no test coverage detected