1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2024-10-06 19:01:15 +01:00
workload-automation/wlauto/external
John Richardson c49c5c4121 Add per-action instrumentation for UX performance
- Implement a new Marker API in BaseUiAutomation so workload can
  generate start and end markers with string name. Outputs to logcat.

- Document the Marker output log format in the WA documentation

- Create a results processor to take existing instrument fps logs and
  parse them based on the workload markers. Produce per-action fps
  metrics.

- Add simple timing results based on the workload markers
2016-07-14 13:49:39 +01:00
..
bbench_server Initial commit of open source Workload Automation. 2015-03-10 13:09:31 +00:00
daq_server Updated pylint for v1.5.1 2015-12-09 16:52:39 +00:00
louie Initial commit of open source Workload Automation. 2015-03-10 13:09:31 +00:00
pmu_logger Initial commit of open source Workload Automation. 2015-03-10 13:09:31 +00:00
readenergy Initial commit of open source Workload Automation. 2015-03-10 13:09:31 +00:00
revent revent: Added record and replay commands 2016-01-22 10:40:03 +00:00
sqlite AndroidDevice: WA now pushes its own sqlite3 binary 2016-05-09 17:31:09 +01:00
uiauto Add per-action instrumentation for UX performance 2016-07-14 13:49:39 +01:00
README Initial commit of open source Workload Automation. 2015-03-10 13:09:31 +00:00

This directory contains external libraries and standalone utilities which have
been written/modified to work with Workload Automation (and thus need to be
included with WA rather than obtained from orignal sources).


bbench_server
=============

This is a small sever that is used to detect when ``bbench`` workload has completed. 
``bbench`` navigates though a bunch of web pages in a browser using javascript.
It will cause the browser to sent a GET request to the port the bbench_server is
listening on, indicating the end of workload.


daq_server
==========

Contains Daq server files that will run on a Windows machine. Please refer to
daq instrument documentation.


louie (third party)
=====

Python package that is itself a fork (and now, a replacement for) pydispatcher.
This library provides a signal dispatching mechanism. This has been modified for
WA to add prioritization to callbacks.


pmu_logger
==========

Source for the kernel driver that enable the logging of CCI counters to ftrace 
on periodic basis. This driver is required by the ``cci_pmu_logger`` instrument.


readenergy
==========

Outputs Juno internal energy/power/voltage/current measurments by reading APB
regesiters from memory. This is used by ``juno_energy`` instrument.


revent
======

This is a tool that is used to both record and playback key press and screen tap
events. It is used to record UI manipulation for some workloads (such as games)
where it is not possible to use the Android UI Automator.

The tools is also included in binary form in wlauto/common/. In order to build 
the tool from source, you will need to have Android NDK in your PATH.


stacktracer.py (third party)
==============

A module based on an ActiveState recipe that allows tracing thread stacks during
execution of a Python program. This is used through the ``--debug`` flag in WA
to ease debuging multi-threaded parts of the code.


terminalsize.py (third party)
===============

Implements a platform-agnostic way of determining terminal window size. Taken
from a public Github gist.


uiauto
======

Contains the utilities library for UI automation.