[~] Refactor

This commit is contained in:
Siarhei Siniak 2021-07-20 10:52:43 +03:00
parent 76462a24e2
commit 9000e2cc87

@ -965,10 +965,14 @@ def kernel_13(
def kernel_14( def kernel_14(
skip_o_6=None, skip_o_6=None,
run_benchmark=None,
): ):
if skip_o_6 is None: if skip_o_6 is None:
skip_o_6 = True skip_o_6 = True
if run_benchmark is None:
run_benchmark = False
o_3 = python.tasks.mlb_player.kernel_3(should_exist=True) o_3 = python.tasks.mlb_player.kernel_3(should_exist=True)
o_4 = python.tasks.mlb_player.kernel_4(o_3=o_3) o_4 = python.tasks.mlb_player.kernel_4(o_3=o_3)
o_5 = python.tasks.mlb_player.kernel_5(o_4=o_4) o_5 = python.tasks.mlb_player.kernel_5(o_4=o_4)
@ -991,6 +995,11 @@ def kernel_14(
o_6=o_6, o_6=o_6,
) )
dict( if run_benchmark:
o_11 = python.tasks.mlb_player.kernel_11_benchmark(o_7=o_7, o_10=o_10)
o_9 = python.tasks.mlb_player.kernel_9_benchmark(o_7=o_7)
o_8 = python.tasks.mlb_player.kernel_8(o_7=o_7)
return dict(
o_13=o_13, o_13=o_13,
) )