qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 0/9] GSoC 2020 - TCG Continuous Benchmarking scripts and tools


From: Ahmed Karaman
Subject: [PATCH 0/9] GSoC 2020 - TCG Continuous Benchmarking scripts and tools
Date: Fri, 28 Aug 2020 12:40:53 +0200

Greetings,

This series includes all of the scripts, tools, and benchmarks
developed in the TCG Continuous Benchmarking GSoC project for 2020.

The series includes one patch for updating the MAINTAINERS file and
eight patches each with a separate script or tool.

All scripts and tools were thoroughly introduced, explained, and
utilized in the project weekly reports which were posted here on the
list each Monday at 12:30PM for the last three months.

Reports:
Report 1 - Measuring Basic Performance Metrics of QEMU:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg714853.html
Introduced tools:
topN_perf.py and topN_callgrind.py

Report 2 - Dissecting QEMU Into Three Main Parts:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg717592.html
Introduced tools:
dissect.py

Report 3 - QEMU 5.0 and 5.1-pre-soft-freeze Dissect Comparison:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg720321.html

Report 4 - Listing QEMU Helpers and Function Callees:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg722559.html
Introduced tools:
list_fn_callees.py and list_helpers.py

Report 5 - Finding Commits Affecting QEMU Performance:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg724080.html
Introduced tools:
bisect.py

Report 6 - Performance Comparison of Two QEMU Builds:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg725700.html

Report 7 - Measuring QEMU Emulation Efficiency:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg727147.html

Report 8 - QEMU Nightly Performance Tests:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg730444.html
Introduced tools:
nightly-tests/

Report 9 - Measuring QEMU Performance in System Mode:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg732729.html
Introduced tools:
topN_system.py

Report 10 - Measuring QEMU Performance in System Mode - Part Two:
https://www.mail-archive.com/qemu-devel@nongnu.org/msg734485.html


Best regards,
Ahmed Karaman

Ahmed Karaman (9):
  scripts/performance: Refactor topN_perf.py
  scripts/performance: Refactor topN_callgrind.py
  scripts/performance: Refactor dissect.py
  scripts/performance: Add list_fn_callees.py script
  scripts/performance: Add list_helpers.py script
  scripts/performance: Add bisect.py script
  tests/performance: Add nightly tests
  MAINTAINERS: Add 'tests/performance' to 'Performance Tools and Tests'
    subsection
  scripts/performance: Add topN_system.py script

 MAINTAINERS                                   |  32 +-
 scripts/performance/bisect.py                 | 425 ++++++++
 scripts/performance/dissect.py                | 123 +--
 scripts/performance/list_fn_callees.py        | 245 +++++
 scripts/performance/list_helpers.py           | 221 +++++
 scripts/performance/topN_callgrind.py         | 169 ++--
 scripts/performance/topN_perf.py              | 174 ++--
 scripts/performance/topN_system.py            | 158 +++
 tests/performance/nightly-tests/README.md     | 243 +++++
 .../source/dijkstra_double/dijkstra_double.c  | 194 ++++
 .../source/dijkstra_int32/dijkstra_int32.c    | 192 ++++
 .../source/matmult_double/matmult_double.c    | 123 +++
 .../source/matmult_int32/matmult_int32.c      | 121 +++
 .../source/qsort_double/qsort_double.c        | 104 ++
 .../source/qsort_int32/qsort_int32.c          | 103 ++
 .../source/qsort_string/qsort_string.c        | 122 +++
 .../source/search_string/search_string.c      | 110 +++
 .../scripts/nightly_tests_core.py             | 920 ++++++++++++++++++
 .../scripts/run_nightly_tests.py              | 135 +++
 .../nightly-tests/scripts/send_email.py       |  56 ++
 20 files changed, 3744 insertions(+), 226 deletions(-)
 create mode 100755 scripts/performance/bisect.py
 create mode 100755 scripts/performance/list_fn_callees.py
 create mode 100755 scripts/performance/list_helpers.py
 create mode 100755 scripts/performance/topN_system.py
 create mode 100644 tests/performance/nightly-tests/README.md
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/dijkstra_double/dijkstra_double.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/dijkstra_int32/dijkstra_int32.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/matmult_double/matmult_double.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/matmult_int32/matmult_int32.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/qsort_double/qsort_double.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/qsort_int32/qsort_int32.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/qsort_string/qsort_string.c
 create mode 100644 
tests/performance/nightly-tests/benchmarks/source/search_string/search_string.c
 create mode 100755 
tests/performance/nightly-tests/scripts/nightly_tests_core.py
 create mode 100755 tests/performance/nightly-tests/scripts/run_nightly_tests.py
 create mode 100644 tests/performance/nightly-tests/scripts/send_email.py

-- 
2.17.1




reply via email to

[Prev in Thread] Current Thread [Next in Thread]