bench_run
ベンチマークテストを実行
呼び出し手順
[modutests_names, elapsed_time, nb_iterations] = bench_run() [modutests_names, elapsed_time, nb_iterations] = bench_run(module[, test_name[, options, [exportToFile]]) [modutests_names, elapsed_time, nb_iterations] = bench_run(path_to_module[, test_name[, options, [exportToFile]])
引数
- module
文字列ベクトル. モジュール名またはツールボックスの絶対パスを指定します.
- path_to_module
a vector of string. Contains the paths to directories of modules to test. If
"/path/to/directory"
is given as input parameter, tests are retrieved in the subdirectory/path/to/directory/tests/benchmarks
.Used for homemade benchmarks.- test_name
a vector of string. Contains the names of the tests to perform.
The name of a test is its filename without
.tst
. If several modules or directory are given as first input parameter, scans for tests in each of these modules or directory.Partial test names are allowed to run a subset of benchmarks dedicated to the same function/feature. For instance, specifying"ascii"
will select all tests (in given module(s)) whose names contain"ascii"
(See examples).- options
文字列ベクトル
"list" : モジュールで利用可能なベンチマークテストのリスト
"help" : Scilabコンソールにいくつかの使用例を表示
"nb_run=value"
: runs each benchmarkvalue
times ; by defaultbench_run
runs 10000 times the code between BENCH START and BENCH END tags (see below). Overrides anyBENCH NB RUN
specified in the benchmark test files.
- exportToFile
a single string
File path to the result of the
bench_run
in xml format. By default, or if"", "[]"
or[]
is given, the output directory isTMPDIR/benchmarks/
.If
exportToFile
is a directory, creates a timestamped output file is the directory, otherwise creates the fileexportToFile
. If the file could not be created a warning is issued and the file is created underTMPDIR/benchmarks/
instead.- modutests_names
a N-by-2 matrix of strings
the first column lists the modules tested by
bench_run
, the second column lists the names of the benchmarks- elapsed_time
a vector of doubles
the execution time for each benchmark
- nb_iterations
a vector of doubles of size N
the number of iterations of respective test
説明
Performs benchmark tests, measures execution time and produces a report about benchmark tests.
Searches for .tst files in benchmark test library or input parameter path under tests/benchmark
subdirectory,
executes them 10000 times and displays a report about execution time.
Special tags may be inserted in the .tst file, which help to control the processing of the corresponding test. These tags are expected to be found in Scilab comments.
These are the available tags :
<-- BENCH NB RUN : 10 -->
By default, this test will be repeated 10 times, unless the "nb_run=###"
bench_run(..)
option is used. The value given for the flag can be set to any integer value.// <-- BENCH START --> [code to be executed] // <-- BENCH END -->
Code between these tags will be repeated. Any code written before/after will be executed only once before/after the repetition, without being timed. If these tags are missing, the entire code will be repeated.
Examples
Some simple examples of invocation of bench_run
// Launch all tests // This may take some time... // bench_run(); // bench_run([]); // bench_run([],[]); // Test one or several module bench_run('core'); bench_run('core',[]); bench_run(['core','string']); // Launch one or several test in a specified module bench_run('core',['trycatch','opcode']); // With options bench_run([],[],'list'); bench_run([],[],'help'); bench_run("string", [], 'nb_run=100'); // results in an output file in the current directory bench_run("string", [], 'nb_run=100', 'my_output_file.xml'); // results in an output directory, TMPDIR/benchmarks is the default bench_run("string", [], 'nb_run=100', TMPDIR);
ベンチマークファイルの例. このファイルはファイル SCI/modules/linear_algebra/tests/benchmarks/bench_chol.tstに対応します.
// ============================================================================= // Scilab ( https://www.scilab.org/ ) - This file is part of Scilab // Copyright (C) 2007-2008 - INRIA // // This file is distributed under the same license as the Scilab package. // ============================================================================= //============================================================================== // Benchmark for chol function //============================================================================== // <-- BENCH NB RUN : 10 --> a = 0; b = 0; a = rand(900, 900, 'n'); a = a'*a; // <-- BENCH START --> b = chol(a); // <-- BENCH END -->
テストの結果
-->bench_run('linear_algebra','bench_chol') For Loop (as reference) ........................... 33.20 ms [ 1000000 x] 001/001 - [linear_algebra] bench_chol ...................... 1233.93 ms [ 10 x]
Running a subset of dedicated benchmarks by using a partial/generic testname:
--> bench_run string ascii For Loop (as reference) ........................... 102.98 ms [ 1000000 x] 001/005 - [string] bench_ascii_1 ........................... 447.40 ms [ 10000 x] 002/005 - [string] bench_ascii_2 ........................... 31727.98 ms [ 1000000 x] 003/005 - [string] bench_ascii_3 ........................... 4173.69 ms [ 10000 x] 004/005 - [string] bench_ascii_4 ........................... 5145.06 ms [ 10000 x] 005/005 - [string] bench_ascii_UTF8 ........................ 23.26 ms [ 10 x]
参照
History
バージョン | 記述 |
6.0 |
|
Report an issue | ||
<< Assert | Development tools | example_run >> |