| 695 | } |
| 696 | |
| 697 | void reducemax_zero(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){ |
| 698 | sgx_status_t ret = ecall_reducemax_zero(eid,input,N,M,C,L,output); |
| 699 | if (ret != SGX_SUCCESS) { |
| 700 | print_error_message(ret); |
| 701 | throw ret; |
| 702 | } |
| 703 | } |
| 704 | |
| 705 | void reducemax_zero_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){ |
| 706 | sgx_status_t ret = ecall_reducemax_zero_grad(eid,input,grad,N,M,C,L,output); |
nothing calls this directly
no test coverage detected