| 727 | } |
| 728 | |
| 729 | void reducemin_zero(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){ |
| 730 | sgx_status_t ret = ecall_reducemin_zero(eid,input,N,M,C,L,output); |
| 731 | if (ret != SGX_SUCCESS) { |
| 732 | print_error_message(ret); |
| 733 | throw ret; |
| 734 | } |
| 735 | } |
| 736 | |
| 737 | void reducemin_zero_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){ |
| 738 | sgx_status_t ret = ecall_reducemin_zero_grad(eid,input,grad,N,M,C,L,output); |
nothing calls this directly
no test coverage detected