| 444 | } |
| 445 | |
| 446 | void maximum(unsigned long int eid, float *input1, float *input2,int N, float *output){ |
| 447 | sgx_status_t ret = ecall_maximum(eid,input1,input2,N,output); |
| 448 | if (ret != SGX_SUCCESS) { |
| 449 | print_error_message(ret); |
| 450 | throw ret; |
| 451 | } |
| 452 | } |
| 453 | |
| 454 | void maximum_grad(unsigned long int eid, float *input1, float *input2, float *grad,int N, float *output1, float *output2){ |
| 455 | sgx_status_t ret = ecall_maximum_grad(eid,input1,input2,grad,N,output1,output2); |
nothing calls this directly
no test coverage detected