Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.28 KB

File metadata and controls

49 lines (31 loc) · 1.28 KB

Parallel Matrix

Application performs multithreaded matrix multiplication

with different matrix sizes and threads amount

Written in C#

Results

Everything is performed on

Intel Core I5 10210U (4 cores / 8 threads up to 4.1 GHz)

  • Measuring SingleThread Size of {100}

    Operation elapsed in: 15 ms

  • Measuring MultiThread Size of {100} and degree {4}

    Operation elapsed in: 29 ms

  • Measuring MultiThread Size of {100} and degree {8}

    Operation elapsed in: 14 ms

  • Measuring MultiThread Size of {100} and degree {16}

    Operation elapsed in: 31 ms

  • Measuring SingleThread Size of {500}

    Operation elapsed in: 1283 ms

  • Measuring MultiThread Size of {500} and degree {4}

    Operation elapsed in: 572 ms

  • Measuring MultiThread Size of {500} and degree {8}

    Operation elapsed in: 457 ms

  • Measuring MultiThread Size of {500} and degree {16}

    Operation elapsed in: 421 ms

  • Measuring SingleThread Size of {1000}

    Operation elapsed in: 10798 ms

  • Measuring MultiThread Size of {1000} and degree {4}

    Operation elapsed in: 5228 ms

  • Measuring MultiThread Size of {1000} and degree {8}

    Operation elapsed in: 3944 ms

  • Measuring MultiThread Size of {1000} and degree {16}

    Operation elapsed in: 3986 ms