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

Function sort_de

sgx_tf_ops/App/App.cpp:745–751  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

743}
744
745void sort_de(unsigned long int eid,float *input,int N,int M ,int C,int L,float *output){
746 sgx_status_t ret = ecall_sort_de(eid,input,N,M,C,L,output);
747 if (ret != SGX_SUCCESS) {
748 print_error_message(ret);
749 throw ret;
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) {

Callers

nothing calls this directly

Calls 2

ecall_sort_deFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected