| 550 | |
| 551 | |
| 552 | void sample(unsigned long int eid, float* input1, float* input2, int N,int nums, float* output){ |
| 553 | sgx_status_t ret = ecall_sample(eid,input1,input2,N,nums,output); |
| 554 | if (ret != SGX_SUCCESS) { |
| 555 | print_error_message(ret); |
| 556 | throw ret; |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | void logprob(unsigned long int eid, float* input, float* mu, float* sigma, int N, float* output){ |
| 561 | sgx_status_t ret = ecall_logprob(eid,input,mu,sigma,N,output); |
nothing calls this directly
no test coverage detected