| 388 | } |
| 389 | |
| 390 | void square_grad(unsigned long int eid, float *input, float *grad,int N, float *output){ |
| 391 | sgx_status_t ret = ecall_square_grad(eid,input,grad,N,output); |
| 392 | if (ret != SGX_SUCCESS) { |
| 393 | print_error_message(ret); |
| 394 | throw ret; |
| 395 | } |
| 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); |
nothing calls this directly
no test coverage detected