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

Function emb_encrypt

sgx_tf_ops/App/App.cpp:262–268  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
264 if (ret != SGX_SUCCESS) {
265 print_error_message(ret);
266 throw ret;
267 }
268}
269
270void tanh(unsigned long int eid, float *input,int N,float *output){
271 sgx_status_t ret = ecall_tanh(eid,input,N,output);

Callers

nothing calls this directly

Calls 2

emb_enFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected