A C++ program that demonstrates multithreaded matrix multiplication using std::thread
.
- Language: C++
- Libraries: STL, Thread
- Clone repo
- Compile:
g++ multithread.cpp -o multithread -pthread
- Run:
./multithread
- Learned multithreading concepts
- Improved execution efficiency (~40% faster than single-thread)