helpfile 612 B

1234567891011121314151617181920212223
  1. #############################################
  2. # #
  3. # Lab2 Multithreaded Matrix Multiplication #
  4. # #
  5. #############################################
  6. Usage:
  7. ./lab2 M N T
  8. Examples:
  9. ./lab2 100 2 10
  10. ./lab2 101 3 150
  11. N must be at least 2 to multiply.
  12. T should be at least 10.
  13. M: Max size of each side of square matrix
  14. N: The number of times to power. Does not vary in these tests.
  15. T: Max number of threads in thread pool.
  16. Stephen Stengel <stephen.stengel@cwu.edu> 40819903
  17. ####################################################