| 260 | } |
| 261 | |
| 262 | void emb_encrypt(unsigned long int eid,uint32_t dim, float* values,float range){ |
| 263 | sgx_status_t ret = emb_en(eid,dim,values,range); |
| 264 | if (ret != SGX_SUCCESS) { |
| 265 | print_error_message(ret); |
| 266 | throw ret; |
| 267 | } |
| 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); |
nothing calls this directly
no test coverage detected