| 308 | } |
| 309 | |
| 310 | void leakyrelu_grad(unsigned long int eid, float *input, float *grad,int N, float *output,float alpha){ |
| 311 | sgx_status_t ret = ecall_leakyrelu_grad(eid,input,grad,N,output,alpha); |
| 312 | if (ret != SGX_SUCCESS) { |
| 313 | print_error_message(ret); |
| 314 | throw ret; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | void abs1(unsigned long int eid, float *input,int N, float *output){ |
| 319 | sgx_status_t ret = ecall_abs(eid,input,N,output); |
nothing calls this directly
no test coverage detected