| 436 | } |
| 437 | |
| 438 | void reducemean_grad(unsigned long int eid, float *input,float grad,int N, float *output){ |
| 439 | sgx_status_t ret = ecall_reducemean_grad(eid,input,grad,N,output); |
| 440 | if (ret != SGX_SUCCESS) { |
| 441 | print_error_message(ret); |
| 442 | throw ret; |
| 443 | } |
| 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); |
nothing calls this directly
no test coverage detected