← cd ../work

rohith@prod:~/work$ cat matrix-arithmetic-with-threads

Matrix Arithmetic with Threads

Speeding up matrix operations by giving each cell its own thread.

./meta
platformDesktop
stackJava | Swing
year2024
Threaded matrix operations

Standard matrix arithmetic loops over every cell on a single thread — slow once the matrices get large. This project assigns each computation its own thread, so values compute in parallel and the total time drops. A concrete lesson in why multiprocessing beats monoprocessing for parallelizable work.