Construct CallCompiledFunctionPosKwArgsVariable

Performance Diagrams

Construct CallCompiledFunctionPosKwArgsVariable 002000000020000000400000004000000060000000600000008000000080000000100000000100000000120000000120000000140000000140000000160000000160000000CPython 3.12Nuitka (main)Nuitka (develop)Nuitka (factory)17339071288.11538461538461257.0CPython 3.12106049772240.03846153846155352.973896735954Nuitka (main)106153167391.96153846153845352.8265388129281Nuitka (develop)106151669543.8846153846154352.82867375338645Nuitka (factory)Construct CallCompiledFunctionPosKwArgsVariableTicks Construct CallCompiledFunctionPosKwArgsVariable 00100000001000000020000000200000003000000030000000400000004000000050000000500000006000000060000000700000007000000080000000800000009000000090000000100000000100000000110000000110000000120000000120000000130000000130000000140000000140000000150000000150000000CPython 3.11Nuitka (main)Nuitka (develop)Nuitka (factory)15802083788.11538461538461257.0CPython 3.1194600872240.03846153846155356.17710436674395Nuitka (main)94258644391.96153846153845356.7122857102408Nuitka (develop)94254382543.8846153846154356.7189506905638Nuitka (factory)Construct CallCompiledFunctionPosKwArgsVariableTicks Construct CallCompiledFunctionPosKwArgsVariable 002000000020000000400000004000000060000000600000008000000080000000100000000100000000120000000120000000140000000140000000160000000160000000180000000180000000200000000200000000CPython 3.10Nuitka (main)Nuitka (develop)Nuitka (factory)21453946788.11538461538461257.0CPython 3.1093614200240.03846153846155396.28669760526196Nuitka (main)93641441391.96153846153845396.2553203007201Nuitka (develop)93642165543.8846153846154396.2544863677335Nuitka (factory)Construct CallCompiledFunctionPosKwArgsVariableTicks Construct CallCompiledFunctionPosKwArgsVariable 002000000020000000400000004000000060000000600000008000000080000000100000000100000000120000000120000000140000000140000000160000000160000000180000000180000000200000000200000000CPython 3.8Nuitka (main)Nuitka (develop)Nuitka (factory)20579927088.11538461538461257.0CPython 3.891950994240.03846153846155393.70437466342065Nuitka (main)91951900391.96153846153845393.703286775507Nuitka (develop)90151468543.8846153846154395.86517221928847Nuitka (factory)Construct CallCompiledFunctionPosKwArgsVariableTicks Construct CallCompiledFunctionPosKwArgsVariable 002000000020000000400000004000000060000000600000008000000080000000100000000100000000120000000120000000140000000140000000160000000160000000180000000180000000200000000200000000220000000220000000CPython 2.7Nuitka (main)Nuitka (develop)Nuitka (factory)22126455788.11538461538461257.0CPython 2.782502400240.03846153846155411.97404673408846Nuitka (main)82902347391.96153846153845411.5273730414249Nuitka (develop)82902434543.8846153846154411.5272758770224Nuitka (factory)Construct CallCompiledFunctionPosKwArgsVariableTicks

Source Code with Construct

    c = getUnknownValue()
    d = getUnknownValue()
    e = getUnknownValue()
    f = getUnknownValue()

    compiled_f = compiled_func

    # This is supposed to make a call to a compiled function, which is
    # being optimized separately.
    # construct_begin
    compiled_f(a, b, c, d=d, e=e, f=f)
    compiled_f(a, c, b, d=d, e=e, f=f)
    compiled_f(a, b, c, d=d, e=e, f=f)
    # construct_alternative



    return compiled_f


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

    c = getUnknownValue()
    d = getUnknownValue()
    e = getUnknownValue()
    f = getUnknownValue()

    compiled_f = compiled_func

    # This is supposed to make a call to a compiled function, which is
    # being optimized separately.
    # construct_begin



    # construct_alternative
    pass
    # construct_end

    return compiled_f


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.