| 332 | } |
| 333 | |
| 334 | void log1(unsigned long int eid, float *input,int N, float *output){ |
| 335 | sgx_status_t ret = ecall_log(eid,input,N,output); |
| 336 | if (ret != SGX_SUCCESS) { |
| 337 | print_error_message(ret); |
| 338 | throw ret; |
| 339 | } |
| 340 | } |
| 341 | |
| 342 | void log_grad(unsigned long int eid, float *input, float *grad,int N, float *output){ |
| 343 | sgx_status_t ret = ecall_log_grad(eid,input,grad,N,output); |
nothing calls this directly
no test coverage detected