| 420 | } |
| 421 | |
| 422 | void reducesum_grad(unsigned long int eid, float *input,float grad,int N, float *output){ |
| 423 | sgx_status_t ret = ecall_reducesum_grad(eid,input,grad,N,output); |
| 424 | if (ret != SGX_SUCCESS) { |
| 425 | print_error_message(ret); |
| 426 | throw ret; |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | void reducemean(unsigned long int eid, float *input,int N, float *output){ |
| 431 | sgx_status_t ret = ecall_reducemean(eid,input,N,output); |
nothing calls this directly
no test coverage detected