Construct FunctionCreationGeneratorLocal

Performance Diagrams

Construct FunctionCreationGeneratorLocal 001000000010000000200000002000000030000000300000004000000040000000CPython 3.12Nuitka (main)Nuitka (develop)Nuitka (factory)4107417188.95192307692307257.0CPython 3.1211553661242.31730769230768434.6048549511153Nuitka (main)11752169395.6826923076923433.41056716453454Nuitka (develop)11752720549.0480769230769433.407252171837Nuitka (factory)Construct FunctionCreationGeneratorLocalTicks Construct FunctionCreationGeneratorLocal 00200000020000004000000400000060000006000000800000080000001000000010000000120000001200000014000000140000001600000016000000180000001800000020000000200000002200000022000000240000002400000026000000260000002800000028000000CPython 3.11Nuitka (main)Nuitka (develop)Nuitka (factory)2899420188.95192307692307257.0CPython 3.1110500577242.31730769230768414.61976016143046Nuitka (main)10435359395.6826923076923415.1756082482202Nuitka (develop)10448668549.0480769230769415.06217664671317Nuitka (factory)Construct FunctionCreationGeneratorLocalTicks Construct FunctionCreationGeneratorLocal 00200000020000004000000400000060000006000000800000080000001000000010000000120000001200000014000000140000001600000016000000180000001800000020000000200000002200000022000000240000002400000026000000260000002800000028000000CPython 3.10Nuitka (main)Nuitka (develop)Nuitka (factory)2914282488.95192307692307257.0CPython 3.1010504677242.31730769230768415.0414054733707Nuitka (main)10484097395.6826923076923415.21591274196567Nuitka (develop)10417524549.0480769230769415.78041577365536Nuitka (factory)Construct FunctionCreationGeneratorLocalTicks Construct FunctionCreationGeneratorLocal 00200000020000004000000400000060000006000000800000080000001000000010000000120000001200000014000000140000001600000016000000180000001800000020000000200000002200000022000000CPython 3.8Nuitka (main)Nuitka (develop)Nuitka (factory)2207996088.95192307692307257.0CPython 3.810551732242.31730769230768386.02208591654363Nuitka (main)10561109395.6826923076923385.9171400307024Nuitka (develop)10519384549.0480769230769386.3841195643192Nuitka (factory)Construct FunctionCreationGeneratorLocalTicks Construct FunctionCreationGeneratorLocal 0010000001000000200000020000003000000300000040000004000000500000050000006000000600000070000007000000800000080000009000000900000010000000100000001100000011000000120000001200000013000000130000001400000014000000CPython 2.7Nuitka (main)Nuitka (develop)Nuitka (factory)1447702588.95192307692307257.0CPython 2.78601210242.31730769230768357.2971455567595Nuitka (main)8600937395.6826923076923357.3018055266083Nuitka (develop)8601758549.0480769230769357.2877914780887Nuitka (factory)Construct FunctionCreationGeneratorLocalTicks

Source Code with Construct

    return yieldingValue


for x in itertools.repeat(None, 50000):
    calledRepeatedly()

print("OK.")

#     Python test originally created or extracted from other peoples work. The
#     parts from me are licensed as below. It is at least Free Software where
#     it's copied from other people. In these cases, that will normally be
#     indicated.
#
#     Licensed under the Apache License, Version 2.0 (the "License");
#     you may not use this file except in compliance with the License.
#     You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#     Unless required by applicable law or agreed to in writing, software
#     distributed under the License is distributed on an "AS IS" BASIS,
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#     See the License for the specific language governing permissions and
#     limitations under the License.

Source Code without Construct

    # construct_end

    return yieldingValue


for x in itertools.repeat(None, 50000):
    calledRepeatedly()

print("OK.")

#     Python test originally created or extracted from other peoples work. The
#     parts from me are licensed as below. It is at least Free Software where
#     it's copied from other people. In these cases, that will normally be
#     indicated.
#
#     Licensed under the Apache License, Version 2.0 (the "License");
#     you may not use this file except in compliance with the License.
#     You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
#     Unless required by applicable law or agreed to in writing, software
#     distributed under the License is distributed on an "AS IS" BASIS,
#     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#     See the License for the specific language governing permissions and
#     limitations under the License.