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

Function leakyrelu_grad

sgx_tf_ops/App/App.cpp:310–316  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308}
309
310void leakyrelu_grad(unsigned long int eid, float *input, float *grad,int N, float *output,float alpha){
311 sgx_status_t ret = ecall_leakyrelu_grad(eid,input,grad,N,output,alpha);
312 if (ret != SGX_SUCCESS) {
313 print_error_message(ret);
314 throw ret;
315 }
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);

Callers

nothing calls this directly

Calls 2

ecall_leakyrelu_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected