| 292 | } |
| 293 | |
| 294 | void softplus_grad(unsigned long int eid,float *input, float *grad,int N, float *output){ |
| 295 | sgx_status_t ret = ecall_softplus_grad(eid,input,grad,N,output); |
| 296 | if (ret != SGX_SUCCESS) { |
| 297 | print_error_message(ret); |
| 298 | throw ret; |
| 299 | } |
| 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); |
nothing calls this directly
no test coverage detected