MCPcopy Create free account
hub / github.com/conflow-dev/ConFlow / square_grad

Function square_grad

sgx_tf_ops/App/App.cpp:390–396  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

388}
389
390void square_grad(unsigned long int eid, float *input, float *grad,int N, float *output){
391 sgx_status_t ret = ecall_square_grad(eid,input,grad,N,output);
392 if (ret != SGX_SUCCESS) {
393 print_error_message(ret);
394 throw ret;
395 }
396}
397
398void lessequal(unsigned long int eid, float *input,int N, float *output,float alpha){
399 sgx_status_t ret = ecall_lessequal(eid,input,N,output,alpha);

Callers

nothing calls this directly

Calls 2

ecall_square_gradFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected