| 364 | } |
| 365 | |
| 366 | void sign(unsigned long int eid, float *input,int N, float *output){ |
| 367 | sgx_status_t ret = ecall_sign(eid,input,N,output); |
| 368 | if (ret != SGX_SUCCESS) { |
| 369 | print_error_message(ret); |
| 370 | throw ret; |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | void sign_grad(unsigned long int eid, float *input, float *grad,int N, float *output){ |
| 375 | sgx_status_t ret = ecall_sign_grad(eid,input,grad,N,output); |
nothing calls this directly
no test coverage detected