Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 642 Bytes

File metadata and controls

53 lines (38 loc) · 642 Bytes

HOW TO RUN THE PROGRAM

THE BENCHMARKS

  • From your root directory:

    Build library only:

    make
    
  • Build the benchmark binaries (single & multi-thread tests)

    cd benchamrk
    make
    
  • To Run the single-thread benchmark

    ./test
    
  • Run the multi-thread benchmark

    ./mtest
    
  • To clean up after running

    make clean
    

ADDITIONAL TEST FILES

  • From your root directory:

    Build library only:

    make
    
  • Build and run all tests:

    make test
    
  • To clean up after running

    make clean