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

Function embedding_ss_grad

sgx_tf_ops/App/App.cpp:254–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
256 if (ret != SGX_SUCCESS) {
257 print_error_message(ret);
258 throw ret;
259 }
260}
261
262void emb_encrypt(unsigned long int eid,uint32_t dim, float* values,float range){
263 sgx_status_t ret = emb_en(eid,dim,values,range);

Callers

nothing calls this directly

Calls 2

emb_ss_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected