diff options
Diffstat (limited to 'tools/skpbench/skpbench.py')
-rwxr-xr-x | tools/skpbench/skpbench.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/skpbench/skpbench.py b/tools/skpbench/skpbench.py index bb88a76a1d..a9ec618ab2 100755 --- a/tools/skpbench/skpbench.py +++ b/tools/skpbench/skpbench.py @@ -73,6 +73,8 @@ __argparse.add_argument('--ddlNumAdditionalThreads', help="number of DDL recording threads in addition to main one") __argparse.add_argument('--ddlTilingWidthHeight', type=int, default=0, help="number of tiles along one edge when in DDL mode") +__argparse.add_argument('--ddlRecordTime', + action='store_true', help="report just the cpu time spent recording DDLs") __argparse.add_argument('skps', nargs='+', help=".skp files or directories to expand for .skp files") @@ -136,6 +138,8 @@ class SKPBench: str(FLAGS.ddlNumAdditionalThreads)]) if FLAGS.ddlTilingWidthHeight: ARGV.extend(['--ddlTilingWidthHeight', str(FLAGS.ddlTilingWidthHeight)]) + if FLAGS.ddlRecordTime: + ARGV.extend(['--ddlRecordTime', 'true']) if FLAGS.adb: if FLAGS.device_serial is None: |