| 508 | } |
| 509 | |
| 510 | void reducemax_one(unsigned long int eid, float *input,int N,int M,int C,int L, float *output){ |
| 511 | sgx_status_t ret = ecall_reducemax_one(eid,input,N,M,C,L,output); |
| 512 | if (ret != SGX_SUCCESS) { |
| 513 | print_error_message(ret); |
| 514 | throw ret; |
| 515 | } |
| 516 | } |
| 517 | |
| 518 | void reducemax_one_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C,int L, float *output){ |
| 519 | sgx_status_t ret = ecall_reducemax_one_grad(eid,input,grad,N,M,C,L,output); |
nothing calls this directly
no test coverage detected