• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2015 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5AUTHOR = "Nemanja Vasic <nvasic@google.com>"
6NAME = "hardware_TLBMissCost"
7TIME = "SHORT"
8TEST_CATEGORY = "Functional"
9TEST_CLASS = "hardware"
10TEST_TYPE = "client"
11ATTRIBUTES = "suite:experimental"
12SUITE = "experimental"
13
14DOC = """
15Calculate cost of a TLB miss
16
17Arguments:
18  events: Events to pass to perf stat -e
19  program: Benchmark binary
20"""
21
22job.run_test('hardware_TLBMissCost', tag='TLBMissCost',
23             events=('cycles', 'iTLB-misses'),
24             program='iTLB_benchmark')
25