| 217 | } |
| 218 | |
| 219 | void 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 | |
| 228 | void 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); |
nothing calls this directly
no test coverage detected