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

Function math

sgx_tf_ops/App/App.cpp:673–680  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

671}
672
673void math(unsigned long int eid, float* input,float num,int N,float* output){
674 sgx_status_t ret = ecall_math(eid,input,num,N,output);
675 if (ret != SGX_SUCCESS) {
676 print_error_message(ret);
677 throw ret;
678 }
679
680}
681
682void matadd(unsigned long int eid, float* input1,float* input2, int N,int C,float* output){
683 sgx_status_t ret = ecall_matadd(eid,input1,input2,N,C,output);

Callers

nothing calls this directly

Calls 2

ecall_mathFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected