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

Function where_equal

sgx_tf_ops/App/App.cpp:760–766  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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);
762 if (ret != SGX_SUCCESS) {
763 print_error_message(ret);
764 throw ret;
765 }
766}
767
768void where_equal_grad(unsigned long int eid,float* grad,float *input1,float *input2,float *cond1,float *cond2,int N,int n1,int n2,float *output1,float* output2){
769 sgx_status_t ret = ecall_where_equal_grad(eid,grad,input1,input2,cond1,cond2,N,n1,n2,output1,output2);

Callers

nothing calls this directly

Calls 2

ecall_where_equalFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected