| 750 | } |
| 751 | } |
| 752 | void sort_de_grad(unsigned long int eid,float *input,float* grad,int N,int M ,int C,int L,float *output){ |
| 753 | sgx_status_t ret = ecall_sort_de_grad(eid,input,grad,N,M,C,L,output); |
| 754 | if (ret != SGX_SUCCESS) { |
| 755 | print_error_message(ret); |
| 756 | throw ret; |
| 757 | } |
| 758 | } |
| 759 | |
| 760 | void where_equal(unsigned long int eid,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output){ |
| 761 | sgx_status_t ret = ecall_where_equal(eid,input1,input2,cond1,cond2,N,n1,n2,output); |
nothing calls this directly
no test coverage detected