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

Function tanh

sgx_tf_ops/App/App.cpp:270–276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

268}
269
270void tanh(unsigned long int eid, float *input,int N,float *output){
271 sgx_status_t ret = ecall_tanh(eid,input,N,output);
272 if (ret != SGX_SUCCESS) {
273 print_error_message(ret);
274 throw ret;
275 }
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);

Callers

nothing calls this directly

Calls 2

ecall_tanhFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected