UIUC-ChenLab / scalehls

A scalable High-Level Synthesis framework on MLIR
Other
220 stars 45 forks source link

ScaleHLS crashed with little modification #40

Closed Oxygen-Chu closed 2 years ago

Oxygen-Chu commented 2 years ago

I run this code, and ScaleHLS crashed. `#define N 32 void test_gemm(float C[N][N], float A[N][N], float B[N][N]) { float psum;

pragma scop

for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) { psum = 0.0f; for (int k = 0; k < N; k++) { psum += A[i][k] * B[k][j]; } C[i][j] = psum; } }

pragma endscop

}`