| 188 | } |
| 189 | |
| 190 | void relu(unsigned long int eid,float *input, int N, float *output){ |
| 191 | |
| 192 | |
| 193 | sgx_status_t ret = ecall_relu(eid, input,N,output); |
| 194 | if (ret != SGX_SUCCESS) { |
| 195 | print_error_message(ret); |
| 196 | throw ret; |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | void sigmoid(unsigned long int eid,float *input, int N, float *output){ |
| 201 |
nothing calls this directly
no test coverage detected