micropython/tests/bench
Paul Sokolovsky e918fc5e37 tests/bench: Add testcase to compare bytes(N) vs b"\0" * N.
Based on python-dev discussion regarding PEP467.
2016-06-08 14:28:18 +03:00
..
arrayop-1-list_inplace.py bench: Add test for map() vs inplace operations in array-likes. 2014-06-19 22:19:24 +03:00
arrayop-2-list_map.py bench: Add test for map() vs inplace operations in array-likes. 2014-06-19 22:19:24 +03:00
arrayop-3-bytearray_inplace.py bench: Add test for map() vs inplace operations in array-likes. 2014-06-19 22:19:24 +03:00
arrayop-4-bytearray_map.py bench: Add test for map() vs inplace operations in array-likes. 2014-06-19 22:19:24 +03:00
bench.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
bytealloc-1-bytes_n.py tests/bench: Add testcase to compare bytes(N) vs b"\0" * N. 2016-06-08 14:28:18 +03:00
bytealloc-2-repeat.py tests/bench: Add testcase to compare bytes(N) vs b"\0" * N. 2016-06-08 14:28:18 +03:00
bytebuf-1-inplace.py bench: Three ways to process a byte buffer. 2014-06-19 22:27:13 +03:00
bytebuf-2-join_map_bytes.py bench: Three ways to process a byte buffer. 2014-06-19 22:27:13 +03:00
bytebuf-3-bytarray_map.py bench: Three ways to process a byte buffer. 2014-06-19 22:27:13 +03:00
from_iter-1-list_bound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-2-list_unbound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-3-tuple_bound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-4-tuple_unbound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-5-bytes_bound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-6-bytes_unbound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-7-bytearray_bound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
from_iter-8-bytearray_unbound.py bench: Add tests for constructing various containers from iterator. 2014-06-19 21:44:33 +03:00
func_args-1.1-pos_1.py tests/bench: Add tests for various ways to pass function args. 2014-05-07 22:34:04 +03:00
func_args-1.2-pos_3.py tests/bench: Add tests for various ways to pass function args. 2014-05-07 22:34:04 +03:00
func_args-2-pos_default_2_of_3.py tests/bench: Add tests for various ways to pass function args. 2014-05-07 22:34:04 +03:00
func_args-3.1-kw_1.py tests/bench: Add tests for various ways to pass function args. 2014-05-07 22:34:04 +03:00
func_args-3.2-kw_3.py tests/bench: Add tests for various ways to pass function args. 2014-05-07 22:34:04 +03:00
func_builtin-1-enum_pos.py tests/bench: Add testcase for positional/kwargs to enumerate(). 2014-05-07 22:34:06 +03:00
func_builtin-2-enum_kw.py tests/bench: Add testcase for positional/kwargs to enumerate(). 2014-05-07 22:34:06 +03:00
funcall-1-inline.py bench: Add test for function call overhead. 2014-06-19 20:49:03 +03:00
funcall-2-funcall.py bench: Add test for function call overhead. 2014-06-19 20:49:03 +03:00
funcall-3-funcall-local.py bench: Add test for function call overhead. 2014-06-19 20:49:03 +03:00
loop_count-1-range.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
loop_count-2-range_iter.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
loop_count-3-while_up.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
loop_count-4-while_down_gt.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
loop_count-5-while_down_ne.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
loop_count-5.1-while_down_ne_localvar.py tests/bench: Add variation on loop_count/while_down_ne test. 2014-05-07 22:34:04 +03:00
var-1-constant.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
var-2-global.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
var-3-local.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
var-4-arg.py tests: Add framework for comparative benchmarking. 2014-05-05 01:24:16 +03:00
var-5-class-attr.py tests/bench/var: Add tests for class/instance var access. 2014-05-05 02:17:13 +03:00
var-6-instance-attr.py tests/bench/var: Add tests for class/instance var access. 2014-05-05 02:17:13 +03:00
var-6.1-instance-attr-5.py tests/bench: Add testcases for lookup in 5-el instance and namedtuple. 2014-05-07 22:34:00 +03:00
var-7-instance-meth.py tests/bench/var: Add tests for class/instance var access. 2014-05-05 02:17:13 +03:00
var-8-namedtuple-1st.py tests: Update for _io/_collections module having been renamed. 2016-05-02 14:15:11 +03:00
var-8.1-namedtuple-5th.py tests: Update for _io/_collections module having been renamed. 2016-05-02 14:15:11 +03:00