commit b159aa469ade171c4119bbf48abd28067c0d6372
parent 67688ce342005fab74260f5e56ea278fae29ec51
Author: Egor Achkasov <eaachkasov@edu.hse.ru>
Date: Fri, 15 Nov 2024 00:19:28 +0100
Cherry-pick fix
Diffstat:
1 file changed, 0 insertions(+), 12 deletions(-)
diff --git a/main.c b/main.c
@@ -52,16 +52,4 @@ int main() {
res[i][j][0] = x_MMSE[i][j].re;
res[i][j][1] = x_MMSE[i][j].im;
}
-
- /* Save the result */
- FILE* f = fopen("out/x_mmse.bin", "w");
- if (!f) {
- fprintf(stderr, "Error: could not open file out/x_MMSE.bin\n");
- exit(8);
- }
- if ((fwrite(res, sizeof(data_t), NUM_TX_ANT * NUM_SC * 2, f)) != NUM_TX_ANT * NUM_SC * 2) {
- fprintf(stderr, "Error: could not write file out/x_MMSE.bin\n");
- exit(8);
- }
- fclose(f);
}