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

Function matmul2d

sgx_tf_ops/App/App.cpp:824–830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

822}
823
824void matmul2d(unsigned long int eid,float *input,float* weight,int N,int M,int C,float *output){
825 sgx_status_t ret = ecall_matmul(eid,input,weight,N,M,C,output);
826 if (ret != SGX_SUCCESS) {
827 print_error_message(ret);
828 throw ret;
829 }
830}
831void matmul2d_grad(unsigned long int eid,float *input,float* grad,float* weight,int N,int M,int C,float *output1,float* output2){
832 sgx_status_t ret = ecall_matmul_grad(eid,input,grad,weight,N,M,C,output1,output2);
833 if (ret != SGX_SUCCESS) {

Callers

nothing calls this directly

Calls 2

ecall_matmulFunction · 0.85
print_error_messageFunction · 0.85

Tested by

no test coverage detected