| 711 | } |
| 712 | |
| 713 | void reducemin_one(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){ |
| 714 | sgx_status_t ret = ecall_reducemin_one(eid,input,N,M,C,L,output); |
| 715 | if (ret != SGX_SUCCESS) { |
| 716 | print_error_message(ret); |
| 717 | throw ret; |
| 718 | } |
| 719 | } |
| 720 | |
| 721 | void reducemin_one_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){ |
| 722 | sgx_status_t ret = ecall_reducemin_one_grad(eid,input,grad,N,M,C,L,output); |
nothing calls this directly
no test coverage detected