| 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); |
| 488 | if (ret != SGX_SUCCESS) { |
| 489 | print_error_message(ret); |
| 490 | throw ret; |
| 491 | } |
| 492 | } |
| 493 | |
| 494 | void clip(unsigned long int eid, float *input, float* down, float* up,int n1,int n2,int N, float *output){ |
| 495 | sgx_status_t ret = ecall_clip(eid,input,down,up,n1,n2,N,output); |
nothing calls this directly
no test coverage detected