Skip to content

Latest commit

 

History

History
27 lines (16 loc) · 1.18 KB

File metadata and controls

27 lines (16 loc) · 1.18 KB

Standard-deviation-c-sharp-vs-asm

Desktop app that calculates standard deviation. User can choose how it is going to be calculated. It can be calculated in two ways. First, executing code written in C#, and second, using code written in assembly. User can compare the time needed to complete the calculations for each way.

To provide input data, user selects a file - each number is in separate line, comma is the decimal separator.

The results (execution time, standard deviation) are shown in the table.

Execution time strongly depends on the used processor.

Examples

  1. Run for AMD Ryzen 5 3600x 6-core processor 3.60 ghz:

    image

  2. Run for Intel I7 8700 6-core processor 3.70 ghz:

    image

  3. Result of invalid input:

    image

Additional Information

GUI is created using WPF.

Project Status

Project is: completed.