| 284 | } |
| 285 | |
| 286 | void softplus(unsigned long int eid,float *input,int N,float *output){ |
| 287 | sgx_status_t ret = ecall_softplus(eid,input,N,output); |
| 288 | if (ret != SGX_SUCCESS) { |
| 289 | print_error_message(ret); |
| 290 | throw ret; |
| 291 | } |
| 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); |
nothing calls this directly
no test coverage detected