| 268 | } |
| 269 | |
| 270 | void tanh(unsigned long int eid, float *input,int N,float *output){ |
| 271 | sgx_status_t ret = ecall_tanh(eid,input,N,output); |
| 272 | if (ret != SGX_SUCCESS) { |
| 273 | print_error_message(ret); |
| 274 | throw ret; |
| 275 | } |
| 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); |
nothing calls this directly
no test coverage detected