| 198 | } |
| 199 | |
| 200 | void sigmoid(unsigned long int eid,float *input, int N, float *output){ |
| 201 | |
| 202 | |
| 203 | sgx_status_t ret = ecall_sigmoid(eid, input,N,output); |
| 204 | if (ret != SGX_SUCCESS) { |
| 205 | print_error_message(ret); |
| 206 | throw ret; |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | void logloss(unsigned long int eid,float *input,int N,int M,int C,float *label,float *weight,float *output){ |
| 211 |
nothing calls this directly
no test coverage detected