| 541 | |
| 542 | |
| 543 | void onehot(unsigned long int eid, float* input, int N, int M,int C,int L, float* output,int alpha){ |
| 544 | sgx_status_t ret = ecall_onehot(eid,input,N,M,C,L,output,alpha); |
| 545 | if (ret != SGX_SUCCESS) { |
| 546 | print_error_message(ret); |
| 547 | throw ret; |
| 548 | } |
| 549 | } |
| 550 | |
| 551 | |
| 552 | void sample(unsigned long int eid, float* input1, float* input2, int N,int nums, float* output){ |
nothing calls this directly
no test coverage detected