Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update main.cpp
"cmath and cstdint headers must be included for compilation."
//
"cmath and cstdint must be uploaded for compilation"
  • Loading branch information
uunotap authored Jun 8, 2025
commit e144b5131f3422d1d3fccda9a5f34afc6205160b
4 changes: 3 additions & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
#include <fstream>
#include <iomanip>
#include <string>
#include <cstdint> //Am I running some weird version of C or is Clion doing something here?
#include <cmath> // It might just be a windows vs linux thing...

void naive_matmul(float* C, float* A, float* B, uint32_t m, uint32_t n, uint32_t p)
{
Expand Down Expand Up @@ -158,4 +160,4 @@ if (suc)

}
return 0;
}
}