| 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); |
| 408 | if (ret != SGX_SUCCESS) { |
| 409 | print_error_message(ret); |
| 410 | throw ret; |
| 411 | } |
| 412 | } |
| 413 | |
| 414 | void reducesum(unsigned long int eid, float *input,int N, float *output){ |
| 415 | sgx_status_t ret = ecall_reducesum(eid,input,N,output); |
nothing calls this directly
no test coverage detected