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

Function abs1

sgx_tf_ops/App/App.cpp:318–324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

316}
317
318void abs1(unsigned long int eid, float *input,int N, float *output){
319 sgx_status_t ret = ecall_abs(eid,input,N,output);
320 if (ret != SGX_SUCCESS) {
321 print_error_message(ret);
322 throw ret;
323 }
324}
325
326void abs_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
327 sgx_status_t ret = ecall_abs_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_absFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected