| 300 | } |
| 301 | |
| 302 | void leakyrelu(unsigned long int eid, float *input,int N, float *output,float alpha){ |
| 303 | sgx_status_t ret = ecall_leakyrelu(eid,input,N,output,alpha); |
| 304 | if (ret != SGX_SUCCESS) { |
| 305 | print_error_message(ret); |
| 306 | throw ret; |
| 307 | } |
| 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); |
nothing calls this directly
no test coverage detected