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

Function sort_de_grad

sgx_tf_ops/App/App.cpp:752–758  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

750 }
751}
752void sort_de_grad(unsigned long int eid,float *input,float* grad,int N,int M ,int C,int L,float *output){
753 sgx_status_t ret = ecall_sort_de_grad(eid,input,grad,N,M,C,L,output);
754 if (ret != SGX_SUCCESS) {
755 print_error_message(ret);
756 throw ret;
757 }
758}
759
760void where_equal(unsigned long int eid,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output){
761 sgx_status_t ret = ecall_where_equal(eid,input1,input2,cond1,cond2,N,n1,n2,output);

Callers

nothing calls this directly

Calls 2

ecall_sort_de_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected