MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / embedding_ss

Function embedding_ss

sgx_tf_ops/App/App.cpp:246–252  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

244}
245
246void 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
254void 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);

Callers

nothing calls this directly

Calls 2

emb_ssFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected