| 276 | } |
| 277 | |
| 278 | void tanh_grad(unsigned long int eid, float *input, float *grad,int N, float *output){ |
| 279 | sgx_status_t ret = ecall_tanh_grad(eid,input,grad,N,output); |
| 280 | if (ret != SGX_SUCCESS) { |
| 281 | print_error_message(ret); |
| 282 | throw ret; |
| 283 | } |
| 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); |
nothing calls this directly
no test coverage detected