| 396 | } |
| 397 | |
| 398 | void lessequal(unsigned long int eid, float *input,int N, float *output,float alpha){ |
| 399 | sgx_status_t ret = ecall_lessequal(eid,input,N,output,alpha); |
| 400 | if (ret != SGX_SUCCESS) { |
| 401 | print_error_message(ret); |
| 402 | throw ret; |
| 403 | } |
| 404 | } |
| 405 | |
| 406 | void greater(unsigned long int eid, float *input,int N, float *output,float alpha){ |
| 407 | sgx_status_t ret = ecall_greater(eid,input,N,output,alpha); |
nothing calls this directly
no test coverage detected