| 153 | } |
| 154 | |
| 155 | void ceshi(unsigned long int eid,float *input,float *output,int M,int C){ |
| 156 | printf("ceshisgx/n"); |
| 157 | sgx_status_t ret = ecall_ceshi(eid,input,output,M,C); |
| 158 | if (ret != SGX_SUCCESS) { |
| 159 | print_error_message(ret); |
| 160 | throw ret; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | void ceshi_grad(unsigned long int eid,float *input,float *output,int M,int C){ |
| 165 | sgx_status_t ret = ecall_ceshi_grad(eid,input,output,M,C); |
nothing calls this directly
no test coverage detected