| 671 | } |
| 672 | |
| 673 | void math(unsigned long int eid, float* input,float num,int N,float* output){ |
| 674 | sgx_status_t ret = ecall_math(eid,input,num,N,output); |
| 675 | if (ret != SGX_SUCCESS) { |
| 676 | print_error_message(ret); |
| 677 | throw ret; |
| 678 | } |
| 679 | |
| 680 | } |
| 681 | |
| 682 | void matadd(unsigned long int eid, float* input1,float* input2, int N,int C,float* output){ |
| 683 | sgx_status_t ret = ecall_matadd(eid,input1,input2,N,C,output); |
nothing calls this directly
no test coverage detected