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

Function tanh_grad

sgx_tf_ops/App/App.cpp:278–284  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276}
277
278void tanh_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
279 sgx_status_t ret = ecall_tanh_grad(eid,input,grad,N,output);
280 if (ret != SGX_SUCCESS) {
281 print_error_message(ret);
282 throw ret;
283 }
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);

Callers

nothing calls this directly

Calls 2

ecall_tanh_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected