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

Function relu_grad

sgx_tf_ops/App/App.cpp:219–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219void relu_grad(unsigned long int eid,float *input,float *grad,int N,float *output){
220
221 sgx_status_t ret = ecall_relu_grad(eid, input,grad,N,output);
222 if (ret != SGX_SUCCESS) {
223 print_error_message(ret);
224 throw ret;
225 }
226}
227
228void sigmoid_grad(unsigned long int eid,float *input,float *grad,int N,float *output){
229 sgx_status_t ret = ecall_sigmoid_grad(eid, input,grad,N,output);

Callers

nothing calls this directly

Calls 2

ecall_relu_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected