| 476 | } |
| 477 | |
| 478 | void softmax(unsigned long int eid, float *input,int N,int M,int C, float *output){ |
| 479 | sgx_status_t ret = ecall_softmax(eid,input,N,M,C,output); |
| 480 | if (ret != SGX_SUCCESS) { |
| 481 | print_error_message(ret); |
| 482 | throw ret; |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | void softmax_grad(unsigned long int eid, float *input, float *grad,int N,int M,int C, float *output){ |
| 487 | sgx_status_t ret = ecall_softmax_grad(eid,input,grad,N,M,C,output); |
nothing calls this directly
no test coverage detected