[issue43575] map() instantiation time reducing by using PEP 590 vectorcall

2021-03-22 Thread Dong-hee Na
Change by Dong-hee Na : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue43575] map() instantiation time reducing by using PEP 590 vectorcall

2021-03-22 Thread Dong-hee Na
Dong-hee Na added the comment: New changeset 86883d40e93acae980e52b90fddd7d042e439beb by Dong-hee Na in branch 'master': bpo-43575: Use PEP 590 vectorcall to speed up map() (GH-24955) https://github.com/python/cpython/commit/86883d40e93acae980e52b90fddd7d042e439beb --

[issue43575] map() instantiation time reducing by using PEP 590 vectorcall

2021-03-21 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue43575] map() instantiation time reducing by using PEP 590 vectorcall

2021-03-20 Thread Dong-hee Na
Change by Dong-hee Na : -- keywords: +patch pull_requests: +23714 stage: -> patch review pull_request: https://github.com/python/cpython/pull/24955 ___ Python tracker ___

[issue43575] map() instantiation time reducing by using PEP 590 vectorcall

2021-03-20 Thread Dong-hee Na
New submission from Dong-hee Na : +---+--+--+ | Benchmark | map_bench_master | map_bench_vectorcall | +===+==+==+ | bench map | 151 ns | 116 ns: 1.30x faster |