| 244 | } |
| 245 | |
| 246 | void embedding_ss(unsigned long int eid,float* input,float* output,int M,int C,int num,int dim){ |
| 247 | sgx_status_t ret = emb_ss(eid,input,output,M,C,num,dim); |
| 248 | if (ret != SGX_SUCCESS) { |
| 249 | print_error_message(ret); |
| 250 | throw ret; |
| 251 | } |
| 252 | } |
| 253 | |
| 254 | void embedding_ss_grad(unsigned long int eid,float* grad,float* output,int M,int C,int num,int dim){ |
| 255 | sgx_status_t ret = emb_ss_grad(eid,grad,output,M,C,num,dim); |
nothing calls this directly
no test coverage detected