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

Function softplus

sgx_tf_ops/App/App.cpp:286–292  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

284}
285
286void softplus(unsigned long int eid,float *input,int N,float *output){
287 sgx_status_t ret = ecall_softplus(eid,input,N,output);
288 if (ret != SGX_SUCCESS) {
289 print_error_message(ret);
290 throw ret;
291 }
292}
293
294void softplus_grad(unsigned long int eid,float *input, float *grad,int N, float *output){
295 sgx_status_t ret = ecall_softplus_grad(eid,input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_softplusFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected