| 180 | } |
| 181 | |
| 182 | void decrypt(unsigned long int eid,float *input, int N, float *output){ |
| 183 | sgx_status_t ret = ecall_decrypt(eid, input,N,output); |
| 184 | if (ret != SGX_SUCCESS) { |
| 185 | print_error_message(ret); |
| 186 | throw ret; |
| 187 | } |
| 188 | } |
| 189 | |
| 190 | void relu(unsigned long int eid,float *input, int N, float *output){ |
| 191 |
nothing calls this directly
no test coverage detected