gem5 syscall emulation OpenBLAS cblas_dgemm fails with “fatal: syscall mbind (#237) unimplemented”
问题 I am working on a program that I need to simulate program that called OpenBLAS functions with gem5 in SE mode. My code(in C) is as below #include <cblas.h> #include <stdio.h> void main() { int i=0; double A[6] = {1.0,2.0,1.0,-3.0,4.0,-1.0}; double B[6] = {1.0,2.0,1.0,-3.0,4.0,-1.0}; double C[9] = {.5,.5,.5,.5,.5,.5,.5,.5,.5}; cblas_dgemm(CblasColMajor, CblasNoTrans, CblasTrans,3,3,2,1,A, 3, B, 3,2,C,3); for(i=0; i<9; i++) printf("%lf ", C[i]); printf("\n"); printf("hello hihi\n"); } which is