Created
March 23, 2023 21:41
-
-
Save janeyx99/ad0b8de18798a330f864b6e817faa0cb to your computer and use it in GitHub Desktop.
Compiled kernels for ASGD too many args
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from ctypes import c_void_p, c_long | |
| import torch | |
| import math | |
| import random | |
| from torch import empty_strided, as_strided, device | |
| from torch._inductor.codecache import AsyncCompile | |
| from torch._inductor.select_algorithm import extern_kernels | |
| aten = torch.ops.aten | |
| assert_size_stride = torch._C._dynamo.guards.assert_size_stride | |
| async_compile = AsyncCompile() | |
| import triton | |
| import triton.language as tl | |
| from torch._inductor.triton_ops.autotune import grid, start_graph, end_graph | |
| from torch._C import _cuda_getCurrentRawStream as get_cuda_stream | |
| # kernel path: /tmp/torchinductor_janeyx/ck/cckoxjwquvinpw322r7xk3fyfyoysr7ti4w4mqki2mlch6m755je.py | |
| # Original ATen: aten.add, aten.mul, aten.neg, aten.rsub, aten.sub | |
| # aten.add => add_1, add_2 | |
| # aten.mul => mul, mul_1, mul_2, mul_3 | |
| # aten.neg => neg | |
| # aten.rsub => sub | |
| # aten.sub => sub_1 | |
| triton_fused_add_mul_neg_rsub_sub_0 = async_compile.triton(''' | |
| import triton | |
| import triton.language as tl | |
| from torch._inductor.ir import ReductionHint | |
| from torch._inductor.ir import TileHint | |
| from torch._inductor.triton_ops.autotune import pointwise | |
| from torch._inductor.utils import instance_descriptor | |
| @pointwise(size_hints=[16384], filename=__file__, meta={'signature': {0: '*fp32', 1: 'fp32', 2: '*fp32', 3: '*fp32', 4: 'fp32', 5: '*fp32', 6: '*fp32', 7: '*fp32', 8: '*fp32', 9: 'i32'}, 'device': 0, 'constants': {}, 'mutated_arg_names': ['in_ptr0', 'in_ptr3', 'out_ptr2', 'out_ptr3'], 'configs': [instance_descriptor(divisible_by_16=(0, 1, 2, 3, 4, 5, 6, 7, 8, 9), equal_to_1=())]}) | |
| @triton.jit | |
| def triton_(in_ptr0, in_ptr1, in_ptr2, in_ptr3, in_ptr4, out_ptr0, out_ptr1, out_ptr2, out_ptr3, xnumel, XBLOCK : tl.constexpr): | |
| xnumel = 9408 | |
| xoffset = tl.program_id(0) * XBLOCK | |
| xindex = xoffset + tl.arange(0, XBLOCK)[:] | |
| xmask = xindex < xnumel | |
| x0 = xindex | |
| tmp0 = tl.load(in_ptr0 + (x0), xmask) | |
| tmp2 = in_ptr1 | |
| tmp7 = tl.load(in_ptr2 + (x0), xmask) | |
| tmp11 = tl.load(in_ptr3 + (x0), xmask) | |
| tmp13 = in_ptr4 | |
| tmp1 = 1.0 | |
| tmp3 = 0.0001 | |
| tmp4 = tmp2 * tmp3 | |
| tmp5 = tmp1 - tmp4 | |
| tmp6 = tmp0 * tmp5 | |
| tmp8 = -tmp2 | |
| tmp9 = tmp7 * tmp8 | |
| tmp10 = tmp6 + tmp9 | |
| tmp12 = tmp10 - tmp11 | |
| tmp14 = tmp12 * tmp13 | |
| tmp15 = tmp11 + tmp14 | |
| tl.store(out_ptr0 + (x0 + tl.zeros([XBLOCK], tl.int32)), tmp10, xmask) | |
| tl.store(out_ptr1 + (x0 + tl.zeros([XBLOCK], tl.int32)), tmp15, xmask) | |
| tl.store(out_ptr2 + (x0 + tl.zeros([XBLOCK], tl.int32)), tmp15, xmask) | |
| tl.store(out_ptr3 + (x0 + tl.zeros([XBLOCK], tl.int32)), tmp10, xmask) | |
| ''') | |
| kernel_cpp_1 = async_compile.cpp(''' | |
| #include "/tmp/torchinductor_janeyx/ao/caomrguwaptybystzop6sbmdii67jqxwyhyzjizs5gbwosh2mdkg.h" | |
| extern "C" void kernel(const float* in_ptr0, | |
| const float* in_ptr1, | |
| const float* in_ptr2, | |
| const float* in_ptr3, | |
| const float* in_ptr4, | |
| const float* in_ptr5, | |
| const float* in_ptr6, | |
| const float* in_ptr7, | |
| const float* in_ptr8, | |
| const float* in_ptr9, | |
| const float* in_ptr10, | |
| const float* in_ptr11, | |
| const float* in_ptr12, | |
| const float* in_ptr13, | |
| const float* in_ptr14, | |
| const float* in_ptr15, | |
| const float* in_ptr16, | |
| const float* in_ptr17, | |
| const float* in_ptr18, | |
| const float* in_ptr19, | |
| const float* in_ptr20, | |
| const float* in_ptr21, | |
| const float* in_ptr22, | |
| const float* in_ptr23, | |
| const float* in_ptr24, | |
| const float* in_ptr25, | |
| const float* in_ptr26, | |
| const float* in_ptr27, | |
| const float* in_ptr28, | |
| const float* in_ptr29, | |
| const float* in_ptr30, | |
| const float* in_ptr31, | |
| const float* in_ptr32, | |
| const float* in_ptr33, | |
| const float* in_ptr34, | |
| const float* in_ptr35, | |
| const float* in_ptr36, | |
| const float* in_ptr37, | |
| const float* in_ptr38, | |
| const float* in_ptr39, | |
| const float* in_ptr40, | |
| const float* in_ptr41, | |
| const float* in_ptr42, | |
| const float* in_ptr43, | |
| const float* in_ptr44, | |
| const float* in_ptr45, | |
| const float* in_ptr46, | |
| const float* in_ptr47, | |
| const float* in_ptr48, | |
| const float* in_ptr49, | |
| const float* in_ptr50, | |
| const float* in_ptr51, | |
| const float* in_ptr52, | |
| const float* in_ptr53, | |
| const float* in_ptr54, | |
| const float* in_ptr55, | |
| const float* in_ptr56, | |
| const float* in_ptr57, | |
| const float* in_ptr58, | |
| const float* in_ptr59, | |
| const float* in_ptr60, | |
| const float* in_ptr61, | |
| const float* in_ptr62, | |
| const float* in_ptr63, | |
| const float* in_ptr64, | |
| const float* in_ptr65, | |
| const float* in_ptr66, | |
| const float* in_ptr67, | |
| const float* in_ptr68, | |
| const float* in_ptr69, | |
| const float* in_ptr70, | |
| const float* in_ptr71, | |
| const float* in_ptr72, | |
| const float* in_ptr73, | |
| const float* in_ptr74, | |
| const float* in_ptr75, | |
| const float* in_ptr76, | |
| const float* in_ptr77, | |
| const float* in_ptr78, | |
| const float* in_ptr79, | |
| const float* in_ptr80, | |
| const float* in_ptr81, | |
| const float* in_ptr82, | |
| const float* in_ptr83, | |
| const float* in_ptr84, | |
| const float* in_ptr85, | |
| const float* in_ptr86, | |
| const float* in_ptr87, | |
| const float* in_ptr88, | |
| const float* in_ptr89, | |
| const float* in_ptr90, | |
| const float* in_ptr91, | |
| const float* in_ptr92, | |
| const float* in_ptr93, | |
| const float* in_ptr94, | |
| const float* in_ptr95, | |
| const float* in_ptr96, | |
| const float* in_ptr97, | |
| const float* in_ptr98, | |
| const float* in_ptr99, | |
| const float* in_ptr100, | |
| const float* in_ptr101, | |
| const float* in_ptr102, | |
| const float* in_ptr103, | |
| const float* in_ptr104, | |
| const float* in_ptr105, | |
| const float* in_ptr106, | |
| const float* in_ptr107, | |
| const float* in_ptr108, | |
| const float* in_ptr109, | |
| const float* in_ptr110, | |
| const float* in_ptr111, | |
| const float* in_ptr112, | |
| const float* in_ptr113, | |
| const float* in_ptr114, | |
| const float* in_ptr115, | |
| const float* in_ptr116, | |
| const float* in_ptr117, | |
| const float* in_ptr118, | |
| const float* in_ptr119, | |
| const float* in_ptr120, | |
| const float* in_ptr121, | |
| const float* in_ptr122, | |
| const float* in_ptr123, | |
| const float* in_ptr124, | |
| const float* in_ptr125, | |
| const float* in_ptr126, | |
| const float* in_ptr127, | |
| const float* in_ptr128, | |
| const float* in_ptr129, | |
| const float* in_ptr130, | |
| const float* in_ptr131, | |
| const float* in_ptr132, | |
| const float* in_ptr133, | |
| const float* in_ptr134, | |
| const float* in_ptr135, | |
| const float* in_ptr136, | |
| const float* in_ptr137, | |
| const float* in_ptr138, | |
| const float* in_ptr139, | |
| const float* in_ptr140, | |
| const float* in_ptr141, | |
| const float* in_ptr142, | |
| const float* in_ptr143, | |
| const float* in_ptr144, | |
| const float* in_ptr145, | |
| const float* in_ptr146, | |
| const float* in_ptr147, | |
| const float* in_ptr148, | |
| const float* in_ptr149, | |
| const float* in_ptr150, | |
| const float* in_ptr151, | |
| const float* in_ptr152, | |
| const float* in_ptr153, | |
| const float* in_ptr154, | |
| const float* in_ptr155, | |
| const float* in_ptr156, | |
| const float* in_ptr157, | |
| const float* in_ptr158, | |
| const float* in_ptr159, | |
| const float* in_ptr160, | |
| const float* in_ptr161, | |
| const float* in_ptr162, | |
| const float* in_ptr163, | |
| const float* in_ptr164, | |
| const float* in_ptr165, | |
| const float* in_ptr166, | |
| const float* in_ptr167, | |
| const float* in_ptr168, | |
| const float* in_ptr169, | |
| const float* in_ptr170, | |
| const float* in_ptr171, | |
| const float* in_ptr172, | |
| const float* in_ptr173, | |
| const float* in_ptr174, | |
| const float* in_ptr175, | |
| const float* in_ptr176, | |
| const float* in_ptr177, | |
| const float* in_ptr178, | |
| const float* in_ptr179, | |
| const float* in_ptr180, | |
| const float* in_ptr181, | |
| const float* in_ptr182, | |
| const float* in_ptr183, | |
| const float* in_ptr184, | |
| const float* in_ptr185, | |
| const float* in_ptr186, | |
| const float* in_ptr187, | |
| const float* in_ptr188, | |
| const float* in_ptr189, | |
| const float* in_ptr190, | |
| const float* in_ptr191, | |
| const float* in_ptr192, | |
| const float* in_ptr193, | |
| const float* in_ptr194, | |
| const float* in_ptr195, | |
| const float* in_ptr196, | |
| const float* in_ptr197, | |
| const float* in_ptr198, | |
| const float* in_ptr199, | |
| const float* in_ptr200, | |
| const float* in_ptr201, | |
| const float* in_ptr202, | |
| const float* in_ptr203, | |
| const float* in_ptr204, | |
| const float* in_ptr205, | |
| const float* in_ptr206, | |
| const float* in_ptr207, | |
| const float* in_ptr208, | |
| const float* in_ptr209, | |
| const float* in_ptr210, | |
| const float* in_ptr211, | |
| const float* in_ptr212, | |
| const float* in_ptr213, | |
| const float* in_ptr214, | |
| const float* in_ptr215, | |
| const float* in_ptr216, | |
| const float* in_ptr217, | |
| const float* in_ptr218, | |
| const float* in_ptr219, | |
| const float* in_ptr220, | |
| const float* in_ptr221, | |
| const float* in_ptr222, | |
| const float* in_ptr223, | |
| const float* in_ptr224, | |
| const float* in_ptr225, | |
| const float* in_ptr226, | |
| const float* in_ptr227, | |
| const float* in_ptr228, | |
| const float* in_ptr229, | |
| const float* in_ptr230, | |
| const float* in_ptr231, | |
| const float* in_ptr232, | |
| const float* in_ptr233, | |
| const float* in_ptr234, | |
| const float* in_ptr235, | |
| const float* in_ptr236, | |
| const float* in_ptr237, | |
| const float* in_ptr238, | |
| const float* in_ptr239, | |
| const float* in_ptr240, | |
| const float* in_ptr241, | |
| const float* in_ptr242, | |
| const float* in_ptr243, | |
| const float* in_ptr244, | |
| const float* in_ptr245, | |
| const float* in_ptr246, | |
| const float* in_ptr247, | |
| const float* in_ptr248, | |
| const float* in_ptr249, | |
| const float* in_ptr250, | |
| const float* in_ptr251, | |
| const float* in_ptr252, | |
| const float* in_ptr253, | |
| const float* in_ptr254, | |
| const float* in_ptr255, | |
| const float* in_ptr256, | |
| const float* in_ptr257, | |
| const float* in_ptr258, | |
| const float* in_ptr259, | |
| const float* in_ptr260, | |
| const float* in_ptr261, | |
| const float* in_ptr262, | |
| const float* in_ptr263, | |
| const float* in_ptr264, | |
| const float* in_ptr265, | |
| const float* in_ptr266, | |
| const float* in_ptr267, | |
| const float* in_ptr268, | |
| const float* in_ptr269, | |
| const float* in_ptr270, | |
| const float* in_ptr271, | |
| const float* in_ptr272, | |
| const float* in_ptr273, | |
| const float* in_ptr274, | |
| const float* in_ptr275, | |
| const float* in_ptr276, | |
| const float* in_ptr277, | |
| const float* in_ptr278, | |
| const float* in_ptr279, | |
| const float* in_ptr280, | |
| const float* in_ptr281, | |
| const float* in_ptr282, | |
| const float* in_ptr283, | |
| const float* in_ptr284, | |
| const float* in_ptr285, | |
| const float* in_ptr286, | |
| const float* in_ptr287, | |
| const float* in_ptr288, | |
| const float* in_ptr289, | |
| const float* in_ptr290, | |
| const float* in_ptr291, | |
| const float* in_ptr292, | |
| const float* in_ptr293, | |
| const float* in_ptr294, | |
| const float* in_ptr295, | |
| const float* in_ptr296, | |
| const float* in_ptr297, | |
| const float* in_ptr298, | |
| const float* in_ptr299, | |
| const float* in_ptr300, | |
| const float* in_ptr301, | |
| const float* in_ptr302, | |
| const float* in_ptr303, | |
| const float* in_ptr304, | |
| const float* in_ptr305, | |
| const float* in_ptr306, | |
| const float* in_ptr307, | |
| const float* in_ptr308, | |
| const float* in_ptr309, | |
| const float* in_ptr310, | |
| const float* in_ptr311, | |
| const float* in_ptr312, | |
| const float* in_ptr313, | |
| const float* in_ptr314, | |
| const float* in_ptr315, | |
| const float* in_ptr316, | |
| const float* in_ptr317, | |
| const float* in_ptr318, | |
| const float* in_ptr319, | |
| const float* in_ptr320, | |
| const float* in_ptr321, | |
| const float* in_ptr322, | |
| const float* in_ptr323, | |
| const float* in_ptr324, | |
| const float* in_ptr325, | |
| const float* in_ptr326, | |
| const float* in_ptr327, | |
| const float* in_ptr328, | |
| const float* in_ptr329, | |
| const float* in_ptr330, | |
| const float* in_ptr331, | |
| const float* in_ptr332, | |
| const float* in_ptr333, | |
| const float* in_ptr334, | |
| const float* in_ptr335, | |
| const float* in_ptr336, | |
| const float* in_ptr337, | |
| const float* in_ptr338, | |
| const float* in_ptr339, | |
| const float* in_ptr340, | |
| const float* in_ptr341, | |
| const float* in_ptr342, | |
| const float* in_ptr343, | |
| const float* in_ptr344, | |
| const float* in_ptr345, | |
| const float* in_ptr346, | |
| const float* in_ptr347, | |
| const float* in_ptr348, | |
| const float* in_ptr349, | |
| const float* in_ptr350, | |
| const float* in_ptr351, | |
| const float* in_ptr352, | |
| const float* in_ptr353, | |
| const float* in_ptr354, | |
| const float* in_ptr355, | |
| const float* in_ptr356, | |
| const float* in_ptr357, | |
| const float* in_ptr358, | |
| const float* in_ptr359, | |
| const float* in_ptr360, | |
| const float* in_ptr361, | |
| const float* in_ptr362, | |
| const float* in_ptr363, | |
| float* out_ptr0, | |
| float* out_ptr1, | |
| float* out_ptr2, | |
| float* out_ptr3, | |
| float* out_ptr4, | |
| float* out_ptr5, | |
| float* out_ptr6, | |
| float* out_ptr7, | |
| float* out_ptr8, | |
| float* out_ptr9, | |
| float* out_ptr10, | |
| float* out_ptr11, | |
| float* out_ptr12, | |
| float* out_ptr13, | |
| float* out_ptr14, | |
| float* out_ptr15, | |
| float* out_ptr16, | |
| float* out_ptr17, | |
| float* out_ptr18, | |
| float* out_ptr19, | |
| float* out_ptr20, | |
| float* out_ptr21, | |
| float* out_ptr22, | |
| float* out_ptr23, | |
| float* out_ptr24, | |
| float* out_ptr25, | |
| float* out_ptr26, | |
| float* out_ptr27, | |
| float* out_ptr28, | |
| float* out_ptr29, | |
| float* out_ptr30, | |
| float* out_ptr31, | |
| float* out_ptr32, | |
| float* out_ptr33, | |
| float* out_ptr34, | |
| float* out_ptr35, | |
| float* out_ptr36, | |
| float* out_ptr37, | |
| float* out_ptr38, | |
| float* out_ptr39, | |
| float* out_ptr40, | |
| float* out_ptr41, | |
| float* out_ptr42, | |
| float* out_ptr43, | |
| float* out_ptr44, | |
| float* out_ptr45, | |
| float* out_ptr46, | |
| float* out_ptr47, | |
| float* out_ptr48, | |
| float* out_ptr49, | |
| float* out_ptr50, | |
| float* out_ptr51, | |
| float* out_ptr52, | |
| float* out_ptr53, | |
| float* out_ptr54, | |
| float* out_ptr55, | |
| float* out_ptr56, | |
| float* out_ptr57, | |
| float* out_ptr58, | |
| float* out_ptr59, | |
| float* out_ptr60, | |
| float* out_ptr61, | |
| float* out_ptr62, | |
| float* out_ptr63, | |
| float* out_ptr64, | |
| float* out_ptr65, | |
| float* out_ptr66, | |
| float* out_ptr67, | |
| float* out_ptr68, | |
| float* out_ptr69, | |
| float* out_ptr70, | |
| float* out_ptr71, | |
| float* out_ptr72, | |
| float* out_ptr73, | |
| float* out_ptr74, | |
| float* out_ptr75, | |
| float* out_ptr76, | |
| float* out_ptr77, | |
| float* out_ptr78, | |
| float* out_ptr79, | |
| float* out_ptr80, | |
| float* out_ptr81, | |
| float* out_ptr82, | |
| float* out_ptr83, | |
| float* out_ptr84, | |
| float* out_ptr85, | |
| float* out_ptr86, | |
| float* out_ptr87, | |
| float* out_ptr88, | |
| float* out_ptr89, | |
| float* out_ptr90, | |
| float* out_ptr91, | |
| float* out_ptr92, | |
| float* out_ptr93, | |
| float* out_ptr94, | |
| float* out_ptr95, | |
| float* out_ptr96, | |
| float* out_ptr97, | |
| float* out_ptr98, | |
| float* out_ptr99, | |
| float* out_ptr100, | |
| float* out_ptr101, | |
| float* out_ptr102, | |
| float* out_ptr103, | |
| float* out_ptr104, | |
| float* out_ptr105, | |
| float* out_ptr106, | |
| float* out_ptr107, | |
| float* out_ptr108, | |
| float* out_ptr109, | |
| float* out_ptr110, | |
| float* out_ptr111, | |
| float* out_ptr112, | |
| float* out_ptr113, | |
| float* out_ptr114, | |
| float* out_ptr115, | |
| float* out_ptr116, | |
| float* out_ptr117, | |
| float* out_ptr118, | |
| float* out_ptr119, | |
| float* out_ptr120, | |
| float* out_ptr121, | |
| float* out_ptr122, | |
| float* out_ptr123, | |
| float* out_ptr124, | |
| float* out_ptr125, | |
| float* out_ptr126, | |
| float* out_ptr127, | |
| float* out_ptr128, | |
| float* out_ptr129, | |
| float* out_ptr130, | |
| float* out_ptr131, | |
| float* out_ptr132, | |
| float* out_ptr133, | |
| float* out_ptr134, | |
| float* out_ptr135, | |
| float* out_ptr136, | |
| float* out_ptr137, | |
| float* out_ptr138, | |
| float* out_ptr139, | |
| float* out_ptr140, | |
| float* out_ptr141, | |
| float* out_ptr142, | |
| float* out_ptr143, | |
| float* out_ptr144, | |
| float* out_ptr145, | |
| float* out_ptr146, | |
| float* out_ptr147, | |
| float* out_ptr148, | |
| float* out_ptr149, | |
| float* out_ptr150, | |
| float* out_ptr151, | |
| float* out_ptr152, | |
| float* out_ptr153, | |
| float* out_ptr154, | |
| float* out_ptr155, | |
| float* out_ptr156, | |
| float* out_ptr157, | |
| float* out_ptr158, | |
| float* out_ptr159, | |
| float* out_ptr160, | |
| float* out_ptr161, | |
| float* out_ptr162, | |
| float* out_ptr163, | |
| float* out_ptr164, | |
| float* out_ptr165, | |
| float* out_ptr166, | |
| float* out_ptr167, | |
| float* out_ptr168, | |
| float* out_ptr169, | |
| float* out_ptr170, | |
| float* out_ptr171, | |
| float* out_ptr172, | |
| float* out_ptr173, | |
| float* out_ptr174, | |
| float* out_ptr175, | |
| float* out_ptr176, | |
| float* out_ptr177, | |
| float* out_ptr178, | |
| float* out_ptr179, | |
| float* out_ptr180, | |
| float* out_ptr181, | |
| float* out_ptr182, | |
| float* out_ptr183, | |
| float* out_ptr184, | |
| float* out_ptr185, | |
| float* out_ptr186, | |
| float* out_ptr187, | |
| float* out_ptr188, | |
| float* out_ptr189, | |
| float* out_ptr190, | |
| float* out_ptr191, | |
| float* out_ptr192, | |
| float* out_ptr193, | |
| float* out_ptr194, | |
| float* out_ptr195, | |
| float* out_ptr196, | |
| float* out_ptr197, | |
| float* out_ptr198, | |
| float* out_ptr199, | |
| float* out_ptr200, | |
| float* out_ptr201, | |
| float* out_ptr202, | |
| float* out_ptr203, | |
| float* out_ptr204, | |
| float* out_ptr205, | |
| float* out_ptr206, | |
| float* out_ptr207, | |
| float* out_ptr208, | |
| float* out_ptr209, | |
| float* out_ptr210, | |
| float* out_ptr211, | |
| float* out_ptr212, | |
| float* out_ptr213, | |
| float* out_ptr214, | |
| float* out_ptr215, | |
| float* out_ptr216, | |
| float* out_ptr217, | |
| float* out_ptr218, | |
| float* out_ptr219, | |
| float* out_ptr220, | |
| float* out_ptr221, | |
| float* out_ptr222, | |
| float* out_ptr223, | |
| float* out_ptr224, | |
| float* out_ptr225, | |
| float* out_ptr226, | |
| float* out_ptr227, | |
| float* out_ptr228, | |
| float* out_ptr229, | |
| float* out_ptr230, | |
| float* out_ptr231, | |
| float* out_ptr232, | |
| float* out_ptr233, | |
| float* out_ptr234, | |
| float* out_ptr235, | |
| float* out_ptr236, | |
| float* out_ptr237, | |
| float* out_ptr238, | |
| float* out_ptr239, | |
| float* out_ptr240, | |
| float* out_ptr241, | |
| float* out_ptr242, | |
| float* out_ptr243, | |
| float* out_ptr244, | |
| float* out_ptr245, | |
| float* out_ptr246, | |
| float* out_ptr247, | |
| float* out_ptr248, | |
| float* out_ptr249, | |
| float* out_ptr250, | |
| float* out_ptr251, | |
| float* out_ptr252, | |
| float* out_ptr253, | |
| float* out_ptr254, | |
| float* out_ptr255, | |
| float* out_ptr256, | |
| float* out_ptr257, | |
| float* out_ptr258, | |
| float* out_ptr259, | |
| float* out_ptr260, | |
| float* out_ptr261, | |
| float* out_ptr262, | |
| float* out_ptr263, | |
| float* out_ptr264, | |
| float* out_ptr265, | |
| float* out_ptr266, | |
| float* out_ptr267, | |
| float* out_ptr268, | |
| float* out_ptr269, | |
| float* out_ptr270, | |
| float* out_ptr271, | |
| float* out_ptr272, | |
| float* out_ptr273, | |
| float* out_ptr274, | |
| float* out_ptr275, | |
| float* out_ptr276, | |
| float* out_ptr277, | |
| float* out_ptr278, | |
| float* out_ptr279, | |
| float* out_ptr280, | |
| float* out_ptr281, | |
| float* out_ptr282, | |
| float* out_ptr283, | |
| float* out_ptr284, | |
| float* out_ptr285, | |
| float* out_ptr286, | |
| float* out_ptr287, | |
| float* out_ptr288, | |
| float* out_ptr289, | |
| float* out_ptr290, | |
| float* out_ptr291, | |
| float* out_ptr292, | |
| float* out_ptr293, | |
| float* out_ptr294, | |
| float* out_ptr295, | |
| float* out_ptr296, | |
| float* out_ptr297, | |
| float* out_ptr298, | |
| float* out_ptr299, | |
| float* out_ptr300, | |
| float* out_ptr301, | |
| float* out_ptr302, | |
| float* out_ptr303, | |
| float* out_ptr304, | |
| float* out_ptr305, | |
| float* out_ptr306, | |
| float* out_ptr307, | |
| float* out_ptr308, | |
| float* out_ptr309, | |
| float* out_ptr310, | |
| float* out_ptr311, | |
| float* out_ptr312, | |
| float* out_ptr313, | |
| float* out_ptr314, | |
| float* out_ptr315, | |
| float* out_ptr316, | |
| float* out_ptr317, | |
| float* out_ptr318, | |
| float* out_ptr319, | |
| float* out_ptr320, | |
| float* out_ptr321, | |
| float* out_ptr322, | |
| float* out_ptr323, | |
| float* out_ptr324, | |
| float* out_ptr325, | |
| float* out_ptr326, | |
| float* out_ptr327, | |
| float* out_ptr328, | |
| float* out_ptr329, | |
| float* out_ptr330, | |
| float* out_ptr331, | |
| float* out_ptr332, | |
| float* out_ptr333, | |
| float* out_ptr334, | |
| float* out_ptr335, | |
| float* out_ptr336, | |
| float* out_ptr337, | |
| float* out_ptr338, | |
| float* out_ptr339, | |
| float* out_ptr340, | |
| float* out_ptr341, | |
| float* out_ptr342, | |
| float* out_ptr343, | |
| float* out_ptr344, | |
| float* out_ptr345, | |
| float* out_ptr346, | |
| float* out_ptr347, | |
| float* out_ptr348, | |
| float* out_ptr349, | |
| float* out_ptr350, | |
| float* out_ptr351, | |
| float* out_ptr352, | |
| float* out_ptr353, | |
| float* out_ptr354, | |
| float* out_ptr355, | |
| float* out_ptr356, | |
| float* out_ptr357, | |
| float* out_ptr358, | |
| float* out_ptr359, | |
| float* out_ptr360, | |
| float* out_ptr361, | |
| float* out_ptr362, | |
| float* out_ptr363, | |
| float* out_ptr364, | |
| float* out_ptr365, | |
| float* out_ptr366, | |
| float* out_ptr367, | |
| float* out_ptr368, | |
| float* out_ptr369, | |
| float* out_ptr370, | |
| float* out_ptr371, | |
| float* out_ptr372, | |
| float* out_ptr373, | |
| float* out_ptr374, | |
| float* out_ptr375, | |
| float* out_ptr376, | |
| float* out_ptr377, | |
| float* out_ptr378, | |
| float* out_ptr379, | |
| float* out_ptr380, | |
| float* out_ptr381, | |
| float* out_ptr382, | |
| float* out_ptr383, | |
| float* out_ptr384, | |
| float* out_ptr385, | |
| float* out_ptr386, | |
| float* out_ptr387, | |
| float* out_ptr388, | |
| float* out_ptr389, | |
| float* out_ptr390, | |
| float* out_ptr391, | |
| float* out_ptr392, | |
| float* out_ptr393, | |
| float* out_ptr394, | |
| float* out_ptr395, | |
| float* out_ptr396, | |
| float* out_ptr397, | |
| float* out_ptr398, | |
| float* out_ptr399, | |
| float* out_ptr400, | |
| float* out_ptr401, | |
| float* out_ptr402, | |
| float* out_ptr403, | |
| float* out_ptr404, | |
| float* out_ptr405, | |
| float* out_ptr406, | |
| float* out_ptr407, | |
| float* out_ptr408, | |
| float* out_ptr409, | |
| float* out_ptr410, | |
| float* out_ptr411, | |
| float* out_ptr412, | |
| float* out_ptr413, | |
| float* out_ptr414, | |
| float* out_ptr415, | |
| float* out_ptr416, | |
| float* out_ptr417, | |
| float* out_ptr418, | |
| float* out_ptr419, | |
| float* out_ptr420, | |
| float* out_ptr421, | |
| float* out_ptr422, | |
| float* out_ptr423, | |
| float* out_ptr424, | |
| float* out_ptr425, | |
| float* out_ptr426, | |
| float* out_ptr427, | |
| float* out_ptr428, | |
| float* out_ptr429, | |
| float* out_ptr430, | |
| float* out_ptr431, | |
| float* out_ptr432, | |
| float* out_ptr433, | |
| float* out_ptr434, | |
| float* out_ptr435, | |
| float* out_ptr436, | |
| float* out_ptr437, | |
| float* out_ptr438, | |
| float* out_ptr439, | |
| float* out_ptr440, | |
| float* out_ptr441, | |
| float* out_ptr442, | |
| float* out_ptr443, | |
| float* out_ptr444, | |
| float* out_ptr445, | |
| float* out_ptr446, | |
| float* out_ptr447, | |
| float* out_ptr448, | |
| float* out_ptr449, | |
| float* out_ptr450, | |
| float* out_ptr451, | |
| float* out_ptr452, | |
| float* out_ptr453, | |
| float* out_ptr454, | |
| float* out_ptr455, | |
| float* out_ptr456, | |
| float* out_ptr457, | |
| float* out_ptr458, | |
| float* out_ptr459, | |
| float* out_ptr460, | |
| float* out_ptr461, | |
| float* out_ptr462, | |
| float* out_ptr463, | |
| float* out_ptr464, | |
| float* out_ptr465, | |
| float* out_ptr466, | |
| float* out_ptr467, | |
| float* out_ptr468, | |
| float* out_ptr469, | |
| float* out_ptr470, | |
| float* out_ptr471, | |
| float* out_ptr472, | |
| float* out_ptr473, | |
| float* out_ptr474, | |
| float* out_ptr475, | |
| float* out_ptr476, | |
| float* out_ptr477, | |
| float* out_ptr478, | |
| float* out_ptr479, | |
| float* out_ptr480, | |
| float* out_ptr481, | |
| float* out_ptr482, | |
| float* out_ptr483, | |
| float* out_ptr484, | |
| float* out_ptr485, | |
| float* out_ptr486, | |
| float* out_ptr487, | |
| float* out_ptr488, | |
| float* out_ptr489, | |
| float* out_ptr490, | |
| float* out_ptr491, | |
| float* out_ptr492, | |
| float* out_ptr493, | |
| float* out_ptr494, | |
| float* out_ptr495, | |
| float* out_ptr496, | |
| float* out_ptr497, | |
| float* out_ptr498, | |
| float* out_ptr499, | |
| float* out_ptr500, | |
| float* out_ptr501, | |
| float* out_ptr502, | |
| float* out_ptr503, | |
| float* out_ptr504, | |
| float* out_ptr505, | |
| float* out_ptr506, | |
| float* out_ptr507, | |
| float* out_ptr508, | |
| float* out_ptr509, | |
| float* out_ptr510, | |
| float* out_ptr511, | |
| float* out_ptr512, | |
| float* out_ptr513, | |
| float* out_ptr514, | |
| float* out_ptr515, | |
| float* out_ptr516, | |
| float* out_ptr517, | |
| float* out_ptr518, | |
| float* out_ptr519, | |
| float* out_ptr520, | |
| float* out_ptr521, | |
| float* out_ptr522, | |
| float* out_ptr523, | |
| float* out_ptr524, | |
| float* out_ptr525, | |
| float* out_ptr526, | |
| float* out_ptr527, | |
| float* out_ptr528, | |
| float* out_ptr529, | |
| float* out_ptr530, | |
| float* out_ptr531, | |
| float* out_ptr532, | |
| float* out_ptr533, | |
| float* out_ptr534, | |
| float* out_ptr535, | |
| float* out_ptr536, | |
| float* out_ptr537, | |
| float* out_ptr538, | |
| float* out_ptr539, | |
| float* out_ptr540, | |
| float* out_ptr541, | |
| float* out_ptr542, | |
| float* out_ptr543, | |
| float* out_ptr544, | |
| float* out_ptr545, | |
| float* out_ptr546, | |
| float* out_ptr547, | |
| float* out_ptr548, | |
| float* out_ptr549, | |
| float* out_ptr550, | |
| float* out_ptr551, | |
| float* out_ptr552, | |
| float* out_ptr553, | |
| float* out_ptr554, | |
| float* out_ptr555, | |
| float* out_ptr556, | |
| float* out_ptr557, | |
| float* out_ptr558, | |
| float* out_ptr559, | |
| float* out_ptr560, | |
| float* out_ptr561, | |
| float* out_ptr562, | |
| float* out_ptr563, | |
| float* out_ptr564, | |
| float* out_ptr565, | |
| float* out_ptr566, | |
| float* out_ptr567, | |
| float* out_ptr568, | |
| float* out_ptr569, | |
| float* out_ptr570, | |
| float* out_ptr571, | |
| float* out_ptr572, | |
| float* out_ptr573, | |
| float* out_ptr574, | |
| float* out_ptr575, | |
| float* out_ptr576, | |
| float* out_ptr577, | |
| float* out_ptr578, | |
| float* out_ptr579, | |
| float* out_ptr580, | |
| float* out_ptr581, | |
| float* out_ptr582, | |
| float* out_ptr583, | |
| float* out_ptr584, | |
| float* out_ptr585, | |
| float* out_ptr586, | |
| float* out_ptr587, | |
| float* out_ptr588, | |
| float* out_ptr589, | |
| float* out_ptr590, | |
| float* out_ptr591, | |
| float* out_ptr592, | |
| float* out_ptr593, | |
| float* out_ptr594, | |
| float* out_ptr595, | |
| float* out_ptr596, | |
| float* out_ptr597, | |
| float* out_ptr598, | |
| float* out_ptr599, | |
| float* out_ptr600, | |
| float* out_ptr601, | |
| float* out_ptr602, | |
| float* out_ptr603, | |
| float* out_ptr604, | |
| float* out_ptr605, | |
| float* out_ptr606, | |
| float* out_ptr607, | |
| float* out_ptr608, | |
| float* out_ptr609, | |
| float* out_ptr610, | |
| float* out_ptr611, | |
| float* out_ptr612, | |
| float* out_ptr613, | |
| float* out_ptr614, | |
| float* out_ptr615, | |
| float* out_ptr616, | |
| float* out_ptr617, | |
| float* out_ptr618, | |
| float* out_ptr619, | |
| float* out_ptr620, | |
| float* out_ptr621, | |
| float* out_ptr622, | |
| float* out_ptr623, | |
| float* out_ptr624, | |
| float* out_ptr625, | |
| float* out_ptr626, | |
| float* out_ptr627, | |
| float* out_ptr628, | |
| float* out_ptr629, | |
| float* out_ptr630, | |
| float* out_ptr631, | |
| float* out_ptr632, | |
| float* out_ptr633, | |
| float* out_ptr634, | |
| float* out_ptr635, | |
| float* out_ptr636, | |
| float* out_ptr637, | |
| float* out_ptr638, | |
| float* out_ptr639, | |
| float* out_ptr640, | |
| float* out_ptr641, | |
| float* out_ptr642, | |
| float* out_ptr643, | |
| float* out_ptr644, | |
| float* out_ptr645, | |
| float* out_ptr646, | |
| float* out_ptr647, | |
| float* out_ptr648, | |
| float* out_ptr649, | |
| float* out_ptr650, | |
| float* out_ptr651, | |
| float* out_ptr652, | |
| float* out_ptr653, | |
| float* out_ptr654, | |
| float* out_ptr655, | |
| float* out_ptr656, | |
| float* out_ptr657, | |
| float* out_ptr658, | |
| float* out_ptr659, | |
| float* out_ptr660, | |
| float* out_ptr661, | |
| float* out_ptr662, | |
| float* out_ptr663, | |
| float* out_ptr664, | |
| float* out_ptr665, | |
| float* out_ptr666, | |
| float* out_ptr667, | |
| float* out_ptr668, | |
| float* out_ptr669, | |
| float* out_ptr670, | |
| float* out_ptr671, | |
| float* out_ptr672, | |
| float* out_ptr673, | |
| float* out_ptr674, | |
| float* out_ptr675, | |
| float* out_ptr676, | |
| float* out_ptr677, | |
| float* out_ptr678, | |
| float* out_ptr679, | |
| float* out_ptr680, | |
| float* out_ptr681, | |
| float* out_ptr682, | |
| float* out_ptr683, | |
| float* out_ptr684, | |
| float* out_ptr685, | |
| float* out_ptr686, | |
| float* out_ptr687, | |
| float* out_ptr688, | |
| float* out_ptr689, | |
| float* out_ptr690, | |
| float* out_ptr691, | |
| float* out_ptr692, | |
| float* out_ptr693, | |
| float* out_ptr694, | |
| float* out_ptr695, | |
| float* out_ptr696, | |
| float* out_ptr697, | |
| float* out_ptr698, | |
| float* out_ptr699, | |
| float* out_ptr700, | |
| float* out_ptr701, | |
| float* out_ptr702, | |
| float* out_ptr703, | |
| float* out_ptr704, | |
| float* out_ptr705, | |
| float* out_ptr706, | |
| float* out_ptr707, | |
| float* out_ptr708, | |
| float* out_ptr709, | |
| float* out_ptr710, | |
| float* out_ptr711, | |
| float* out_ptr712, | |
| float* out_ptr713, | |
| float* out_ptr714, | |
| float* out_ptr715, | |
| float* out_ptr716, | |
| float* out_ptr717, | |
| float* out_ptr718, | |
| float* out_ptr719, | |
| float* out_ptr720, | |
| float* out_ptr721, | |
| float* out_ptr722, | |
| float* out_ptr723, | |
| float* out_ptr724, | |
| float* out_ptr725, | |
| float* out_ptr726, | |
| float* out_ptr727, | |
| float* out_ptr729, | |
| float* out_ptr731, | |
| float* out_ptr733, | |
| float* out_ptr735, | |
| float* out_ptr737, | |
| float* out_ptr739, | |
| float* out_ptr741, | |
| float* out_ptr743, | |
| float* out_ptr745, | |
| float* out_ptr747, | |
| float* out_ptr749, | |
| float* out_ptr751, | |
| float* out_ptr753, | |
| float* out_ptr755, | |
| float* out_ptr757, | |
| float* out_ptr759, | |
| float* out_ptr761, | |
| float* out_ptr763, | |
| float* out_ptr765, | |
| float* out_ptr767, | |
| float* out_ptr769, | |
| float* out_ptr771, | |
| float* out_ptr773, | |
| float* out_ptr775, | |
| float* out_ptr777, | |
| float* out_ptr779, | |
| float* out_ptr781, | |
| float* out_ptr783, | |
| float* out_ptr785, | |
| float* out_ptr787, | |
| float* out_ptr789, | |
| float* out_ptr791, | |
| float* out_ptr793, | |
| float* out_ptr795, | |
| float* out_ptr797, | |
| float* out_ptr799, | |
| float* out_ptr801, | |
| float* out_ptr803, | |
| float* out_ptr805, | |
| float* out_ptr807, | |
| float* out_ptr809, | |
| float* out_ptr811, | |
| float* out_ptr813, | |
| float* out_ptr815, | |
| float* out_ptr817, | |
| float* out_ptr819, | |
| float* out_ptr821, | |
| float* out_ptr823, | |
| float* out_ptr825, | |
| float* out_ptr827, | |
| float* out_ptr829, | |
| float* out_ptr831, | |
| float* out_ptr833, | |
| float* out_ptr835, | |
| float* out_ptr837, | |
| float* out_ptr839, | |
| float* out_ptr841, | |
| float* out_ptr843, | |
| float* out_ptr845, | |
| float* out_ptr847, | |
| float* out_ptr849, | |
| float* out_ptr851, | |
| float* out_ptr853, | |
| float* out_ptr855, | |
| float* out_ptr857, | |
| float* out_ptr859, | |
| float* out_ptr861, | |
| float* out_ptr863, | |
| float* out_ptr865, | |
| float* out_ptr867, | |
| float* out_ptr869, | |
| float* out_ptr871, | |
| float* out_ptr873, | |
| float* out_ptr875, | |
| float* out_ptr877, | |
| float* out_ptr879, | |
| float* out_ptr881, | |
| float* out_ptr883, | |
| float* out_ptr885, | |
| float* out_ptr887, | |
| float* out_ptr889, | |
| float* out_ptr891, | |
| float* out_ptr893, | |
| float* out_ptr895, | |
| float* out_ptr897, | |
| float* out_ptr899, | |
| float* out_ptr901, | |
| float* out_ptr903, | |
| float* out_ptr905, | |
| float* out_ptr907, | |
| float* out_ptr909, | |
| float* out_ptr911, | |
| float* out_ptr913, | |
| float* out_ptr915, | |
| float* out_ptr917, | |
| float* out_ptr919, | |
| float* out_ptr921, | |
| float* out_ptr923, | |
| float* out_ptr925, | |
| float* out_ptr927, | |
| float* out_ptr929, | |
| float* out_ptr931, | |
| float* out_ptr933, | |
| float* out_ptr935, | |
| float* out_ptr937, | |
| float* out_ptr939, | |
| float* out_ptr941, | |
| float* out_ptr943, | |
| float* out_ptr945, | |
| float* out_ptr947, | |
| float* out_ptr949, | |
| float* out_ptr951, | |
| float* out_ptr953, | |
| float* out_ptr955, | |
| float* out_ptr957, | |
| float* out_ptr959, | |
| float* out_ptr961, | |
| float* out_ptr963, | |
| float* out_ptr965, | |
| float* out_ptr967, | |
| float* out_ptr969, | |
| float* out_ptr971, | |
| float* out_ptr973, | |
| float* out_ptr975, | |
| float* out_ptr977, | |
| float* out_ptr979, | |
| float* out_ptr981, | |
| float* out_ptr983, | |
| float* out_ptr985, | |
| float* out_ptr987, | |
| float* out_ptr989, | |
| float* out_ptr991, | |
| float* out_ptr993, | |
| float* out_ptr995, | |
| float* out_ptr997, | |
| float* out_ptr999, | |
| float* out_ptr1001, | |
| float* out_ptr1003, | |
| float* out_ptr1005, | |
| float* out_ptr1007, | |
| float* out_ptr1009, | |
| float* out_ptr1011, | |
| float* out_ptr1013, | |
| float* out_ptr1015, | |
| float* out_ptr1017, | |
| float* out_ptr1019, | |
| float* out_ptr1021, | |
| float* out_ptr1023, | |
| float* out_ptr1025, | |
| float* out_ptr1027, | |
| float* out_ptr1029, | |
| float* out_ptr1031, | |
| float* out_ptr1033, | |
| float* out_ptr1035, | |
| float* out_ptr1037, | |
| float* out_ptr1039, | |
| float* out_ptr1041, | |
| float* out_ptr1043, | |
| float* out_ptr1045, | |
| float* out_ptr1047, | |
| float* out_ptr1049, | |
| float* out_ptr1051, | |
| float* out_ptr1053, | |
| float* out_ptr1055, | |
| float* out_ptr1057, | |
| float* out_ptr1059, | |
| float* out_ptr1061, | |
| float* out_ptr1063, | |
| float* out_ptr1065, | |
| float* out_ptr1067, | |
| float* out_ptr1069, | |
| float* out_ptr1071, | |
| float* out_ptr1073, | |
| float* out_ptr1075, | |
| float* out_ptr1077, | |
| float* out_ptr1079, | |
| float* out_ptr1081, | |
| float* out_ptr1083, | |
| float* out_ptr1085, | |
| float* out_ptr1087, | |
| float* out_ptr1089, | |
| float* out_ptr1091, | |
| float* out_ptr1093, | |
| float* out_ptr1095, | |
| float* out_ptr1097, | |
| float* out_ptr1099, | |
| float* out_ptr1101, | |
| float* out_ptr1103, | |
| float* out_ptr1105, | |
| float* out_ptr1107, | |
| float* out_ptr1109, | |
| float* out_ptr1111, | |
| float* out_ptr1113, | |
| float* out_ptr1115, | |
| float* out_ptr1117, | |
| float* out_ptr1119, | |
| float* out_ptr1121, | |
| float* out_ptr1123, | |
| float* out_ptr1125, | |
| float* out_ptr1127, | |
| float* out_ptr1129, | |
| float* out_ptr1131, | |
| float* out_ptr1133, | |
| float* out_ptr1135, | |
| float* out_ptr1137, | |
| float* out_ptr1139, | |
| float* out_ptr1141, | |
| float* out_ptr1143, | |
| float* out_ptr1145, | |
| float* out_ptr1147, | |
| float* out_ptr1149, | |
| float* out_ptr1151, | |
| float* out_ptr1153, | |
| float* out_ptr1155, | |
| float* out_ptr1157, | |
| float* out_ptr1159, | |
| float* out_ptr1161, | |
| float* out_ptr1163, | |
| float* out_ptr1165, | |
| float* out_ptr1167, | |
| float* out_ptr1169, | |
| float* out_ptr1171, | |
| float* out_ptr1173, | |
| float* out_ptr1175, | |
| float* out_ptr1177, | |
| float* out_ptr1179, | |
| float* out_ptr1181, | |
| float* out_ptr1183, | |
| float* out_ptr1185, | |
| float* out_ptr1187, | |
| float* out_ptr1189, | |
| float* out_ptr1191, | |
| float* out_ptr1193, | |
| float* out_ptr1195, | |
| float* out_ptr1197, | |
| float* out_ptr1199, | |
| float* out_ptr1201, | |
| float* out_ptr1203, | |
| float* out_ptr1205, | |
| float* out_ptr1207, | |
| float* out_ptr1209, | |
| float* out_ptr1211, | |
| float* out_ptr1213, | |
| float* out_ptr1215, | |
| float* out_ptr1217, | |
| float* out_ptr1219, | |
| float* out_ptr1221, | |
| float* out_ptr1223, | |
| float* out_ptr1225, | |
| float* out_ptr1227, | |
| float* out_ptr1229, | |
| float* out_ptr1231, | |
| float* out_ptr1233, | |
| float* out_ptr1235, | |
| float* out_ptr1237, | |
| float* out_ptr1239, | |
| float* out_ptr1241, | |
| float* out_ptr1243, | |
| float* out_ptr1245, | |
| float* out_ptr1247, | |
| float* out_ptr1249, | |
| float* out_ptr1251, | |
| float* out_ptr1253, | |
| float* out_ptr1255, | |
| float* out_ptr1257, | |
| float* out_ptr1259, | |
| float* out_ptr1261, | |
| float* out_ptr1263, | |
| float* out_ptr1265, | |
| float* out_ptr1267, | |
| float* out_ptr1269, | |
| float* out_ptr1271, | |
| float* out_ptr1273, | |
| float* out_ptr1275, | |
| float* out_ptr1277, | |
| float* out_ptr1279, | |
| float* out_ptr1281, | |
| float* out_ptr1283, | |
| float* out_ptr1285, | |
| float* out_ptr1287, | |
| float* out_ptr1289, | |
| float* out_ptr1291, | |
| float* out_ptr1293, | |
| float* out_ptr1295, | |
| float* out_ptr1297, | |
| float* out_ptr1299, | |
| float* out_ptr1301, | |
| float* out_ptr1303, | |
| float* out_ptr1305, | |
| float* out_ptr1307, | |
| float* out_ptr1309, | |
| float* out_ptr1311, | |
| float* out_ptr1313, | |
| float* out_ptr1315, | |
| float* out_ptr1317, | |
| float* out_ptr1319, | |
| float* out_ptr1321, | |
| float* out_ptr1323, | |
| float* out_ptr1325, | |
| float* out_ptr1327, | |
| float* out_ptr1329, | |
| float* out_ptr1331, | |
| float* out_ptr1333, | |
| float* out_ptr1335, | |
| float* out_ptr1337, | |
| float* out_ptr1339, | |
| float* out_ptr1341, | |
| float* out_ptr1343, | |
| float* out_ptr1345, | |
| float* out_ptr1347, | |
| float* out_ptr1349, | |
| float* out_ptr1351, | |
| float* out_ptr1353, | |
| float* out_ptr1355, | |
| float* out_ptr1357, | |
| float* out_ptr1359, | |
| float* out_ptr1361, | |
| float* out_ptr1363, | |
| float* out_ptr1365, | |
| float* out_ptr1367, | |
| float* out_ptr1369, | |
| float* out_ptr1371, | |
| float* out_ptr1373, | |
| float* out_ptr1375, | |
| float* out_ptr1377, | |
| float* out_ptr1379, | |
| float* out_ptr1381, | |
| float* out_ptr1383, | |
| float* out_ptr1385, | |
| float* out_ptr1387, | |
| float* out_ptr1389, | |
| float* out_ptr1391, | |
| float* out_ptr1393, | |
| float* out_ptr1395, | |
| float* out_ptr1397, | |
| float* out_ptr1399, | |
| float* out_ptr1401, | |
| float* out_ptr1403, | |
| float* out_ptr1405, | |
| float* out_ptr1407, | |
| float* out_ptr1409, | |
| float* out_ptr1411, | |
| float* out_ptr1413, | |
| float* out_ptr1415, | |
| float* out_ptr1417, | |
| float* out_ptr1419, | |
| float* out_ptr1421, | |
| float* out_ptr1423, | |
| float* out_ptr1425, | |
| float* out_ptr1427, | |
| float* out_ptr1429, | |
| float* out_ptr1431, | |
| float* out_ptr1433, | |
| float* out_ptr1435, | |
| float* out_ptr1437, | |
| float* out_ptr1439, | |
| float* out_ptr1441, | |
| float* out_ptr1443, | |
| float* out_ptr1445, | |
| float* out_ptr1447, | |
| float* out_ptr1449, | |
| float* out_ptr1451, | |
| float* out_ptr1453, | |
| float* out_ptr1455) | |
| { | |
| { | |
| auto tmp0 = in_ptr0[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr0[0] = tmp7; | |
| out_ptr1[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr1[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr2[0] = tmp7; | |
| out_ptr3[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr2[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr4[0] = tmp7; | |
| out_ptr5[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr3[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr6[0] = tmp7; | |
| out_ptr7[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr4[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr8[0] = tmp7; | |
| out_ptr9[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr5[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr10[0] = tmp7; | |
| out_ptr11[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr6[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr12[0] = tmp7; | |
| out_ptr13[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr7[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr14[0] = tmp7; | |
| out_ptr15[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr8[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr16[0] = tmp7; | |
| out_ptr17[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr9[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr18[0] = tmp7; | |
| out_ptr19[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr10[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr20[0] = tmp7; | |
| out_ptr21[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr11[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr22[0] = tmp7; | |
| out_ptr23[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr12[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr24[0] = tmp7; | |
| out_ptr25[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr13[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr26[0] = tmp7; | |
| out_ptr27[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr14[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr28[0] = tmp7; | |
| out_ptr29[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr15[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr30[0] = tmp7; | |
| out_ptr31[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr16[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr32[0] = tmp7; | |
| out_ptr33[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr17[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr34[0] = tmp7; | |
| out_ptr35[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr18[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr36[0] = tmp7; | |
| out_ptr37[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr19[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr38[0] = tmp7; | |
| out_ptr39[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr20[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr40[0] = tmp7; | |
| out_ptr41[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr21[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr42[0] = tmp7; | |
| out_ptr43[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr22[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr44[0] = tmp7; | |
| out_ptr45[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr23[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr46[0] = tmp7; | |
| out_ptr47[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr24[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr48[0] = tmp7; | |
| out_ptr49[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr25[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr50[0] = tmp7; | |
| out_ptr51[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr26[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr52[0] = tmp7; | |
| out_ptr53[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr27[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr54[0] = tmp7; | |
| out_ptr55[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr28[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr56[0] = tmp7; | |
| out_ptr57[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr29[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr58[0] = tmp7; | |
| out_ptr59[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr30[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr60[0] = tmp7; | |
| out_ptr61[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr31[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr62[0] = tmp7; | |
| out_ptr63[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr32[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr64[0] = tmp7; | |
| out_ptr65[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr33[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr66[0] = tmp7; | |
| out_ptr67[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr34[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr68[0] = tmp7; | |
| out_ptr69[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr35[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr70[0] = tmp7; | |
| out_ptr71[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr36[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr72[0] = tmp7; | |
| out_ptr73[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr37[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr74[0] = tmp7; | |
| out_ptr75[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr38[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr76[0] = tmp7; | |
| out_ptr77[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr39[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr78[0] = tmp7; | |
| out_ptr79[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr40[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr80[0] = tmp7; | |
| out_ptr81[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr41[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr82[0] = tmp7; | |
| out_ptr83[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr42[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr84[0] = tmp7; | |
| out_ptr85[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr43[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr86[0] = tmp7; | |
| out_ptr87[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr44[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr88[0] = tmp7; | |
| out_ptr89[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr45[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr90[0] = tmp7; | |
| out_ptr91[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr46[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr92[0] = tmp7; | |
| out_ptr93[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr47[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr94[0] = tmp7; | |
| out_ptr95[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr48[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr96[0] = tmp7; | |
| out_ptr97[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr49[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr98[0] = tmp7; | |
| out_ptr99[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr50[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr100[0] = tmp7; | |
| out_ptr101[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr51[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr102[0] = tmp7; | |
| out_ptr103[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr52[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr104[0] = tmp7; | |
| out_ptr105[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr53[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr106[0] = tmp7; | |
| out_ptr107[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr54[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr108[0] = tmp7; | |
| out_ptr109[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr55[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr110[0] = tmp7; | |
| out_ptr111[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr56[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr112[0] = tmp7; | |
| out_ptr113[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr57[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr114[0] = tmp7; | |
| out_ptr115[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr58[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr116[0] = tmp7; | |
| out_ptr117[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr59[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr118[0] = tmp7; | |
| out_ptr119[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr60[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr120[0] = tmp7; | |
| out_ptr121[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr61[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr122[0] = tmp7; | |
| out_ptr123[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr62[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr124[0] = tmp7; | |
| out_ptr125[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr63[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr126[0] = tmp7; | |
| out_ptr127[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr64[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr128[0] = tmp7; | |
| out_ptr129[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr65[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr130[0] = tmp7; | |
| out_ptr131[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr66[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr132[0] = tmp7; | |
| out_ptr133[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr67[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr134[0] = tmp7; | |
| out_ptr135[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr68[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr136[0] = tmp7; | |
| out_ptr137[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr69[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr138[0] = tmp7; | |
| out_ptr139[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr70[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr140[0] = tmp7; | |
| out_ptr141[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr71[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr142[0] = tmp7; | |
| out_ptr143[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr72[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr144[0] = tmp7; | |
| out_ptr145[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr73[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr146[0] = tmp7; | |
| out_ptr147[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr74[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr148[0] = tmp7; | |
| out_ptr149[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr75[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr150[0] = tmp7; | |
| out_ptr151[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr76[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr152[0] = tmp7; | |
| out_ptr153[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr77[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr154[0] = tmp7; | |
| out_ptr155[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr78[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr156[0] = tmp7; | |
| out_ptr157[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr79[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr158[0] = tmp7; | |
| out_ptr159[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr80[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr160[0] = tmp7; | |
| out_ptr161[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr81[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr162[0] = tmp7; | |
| out_ptr163[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr82[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr164[0] = tmp7; | |
| out_ptr165[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr83[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr166[0] = tmp7; | |
| out_ptr167[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr84[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr168[0] = tmp7; | |
| out_ptr169[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr85[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr170[0] = tmp7; | |
| out_ptr171[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr86[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr172[0] = tmp7; | |
| out_ptr173[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr87[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr174[0] = tmp7; | |
| out_ptr175[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr88[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr176[0] = tmp7; | |
| out_ptr177[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr89[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr178[0] = tmp7; | |
| out_ptr179[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr90[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr180[0] = tmp7; | |
| out_ptr181[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr91[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr182[0] = tmp7; | |
| out_ptr183[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr92[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr184[0] = tmp7; | |
| out_ptr185[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr93[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr186[0] = tmp7; | |
| out_ptr187[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr94[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr188[0] = tmp7; | |
| out_ptr189[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr95[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr190[0] = tmp7; | |
| out_ptr191[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr96[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr192[0] = tmp7; | |
| out_ptr193[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr97[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr194[0] = tmp7; | |
| out_ptr195[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr98[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr196[0] = tmp7; | |
| out_ptr197[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr99[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr198[0] = tmp7; | |
| out_ptr199[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr100[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr200[0] = tmp7; | |
| out_ptr201[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr101[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr202[0] = tmp7; | |
| out_ptr203[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr102[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr204[0] = tmp7; | |
| out_ptr205[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr103[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr206[0] = tmp7; | |
| out_ptr207[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr104[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr208[0] = tmp7; | |
| out_ptr209[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr105[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr210[0] = tmp7; | |
| out_ptr211[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr106[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr212[0] = tmp7; | |
| out_ptr213[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr107[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr214[0] = tmp7; | |
| out_ptr215[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr108[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr216[0] = tmp7; | |
| out_ptr217[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr109[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr218[0] = tmp7; | |
| out_ptr219[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr110[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr220[0] = tmp7; | |
| out_ptr221[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr111[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr222[0] = tmp7; | |
| out_ptr223[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr112[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr224[0] = tmp7; | |
| out_ptr225[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr113[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr226[0] = tmp7; | |
| out_ptr227[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr114[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr228[0] = tmp7; | |
| out_ptr229[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr115[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr230[0] = tmp7; | |
| out_ptr231[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr116[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr232[0] = tmp7; | |
| out_ptr233[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr117[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr234[0] = tmp7; | |
| out_ptr235[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr118[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr236[0] = tmp7; | |
| out_ptr237[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr119[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr238[0] = tmp7; | |
| out_ptr239[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr120[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr240[0] = tmp7; | |
| out_ptr241[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr121[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr242[0] = tmp7; | |
| out_ptr243[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr122[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr244[0] = tmp7; | |
| out_ptr245[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr123[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr246[0] = tmp7; | |
| out_ptr247[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr124[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr248[0] = tmp7; | |
| out_ptr249[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr125[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr250[0] = tmp7; | |
| out_ptr251[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr126[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr252[0] = tmp7; | |
| out_ptr253[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr127[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr254[0] = tmp7; | |
| out_ptr255[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr128[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr256[0] = tmp7; | |
| out_ptr257[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr129[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr258[0] = tmp7; | |
| out_ptr259[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr130[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr260[0] = tmp7; | |
| out_ptr261[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr131[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr262[0] = tmp7; | |
| out_ptr263[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr132[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr264[0] = tmp7; | |
| out_ptr265[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr133[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr266[0] = tmp7; | |
| out_ptr267[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr134[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr268[0] = tmp7; | |
| out_ptr269[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr135[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr270[0] = tmp7; | |
| out_ptr271[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr136[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr272[0] = tmp7; | |
| out_ptr273[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr137[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr274[0] = tmp7; | |
| out_ptr275[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr138[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr276[0] = tmp7; | |
| out_ptr277[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr139[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr278[0] = tmp7; | |
| out_ptr279[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr140[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr280[0] = tmp7; | |
| out_ptr281[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr141[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr282[0] = tmp7; | |
| out_ptr283[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr142[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr284[0] = tmp7; | |
| out_ptr285[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr143[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr286[0] = tmp7; | |
| out_ptr287[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr144[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr288[0] = tmp7; | |
| out_ptr289[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr145[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr290[0] = tmp7; | |
| out_ptr291[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr146[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr292[0] = tmp7; | |
| out_ptr293[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr147[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr294[0] = tmp7; | |
| out_ptr295[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr148[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr296[0] = tmp7; | |
| out_ptr297[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr149[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr298[0] = tmp7; | |
| out_ptr299[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr150[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr300[0] = tmp7; | |
| out_ptr301[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr151[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr302[0] = tmp7; | |
| out_ptr303[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr152[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr304[0] = tmp7; | |
| out_ptr305[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr153[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr306[0] = tmp7; | |
| out_ptr307[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr154[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr308[0] = tmp7; | |
| out_ptr309[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr155[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr310[0] = tmp7; | |
| out_ptr311[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr156[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr312[0] = tmp7; | |
| out_ptr313[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr157[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr314[0] = tmp7; | |
| out_ptr315[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr158[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr316[0] = tmp7; | |
| out_ptr317[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr159[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr318[0] = tmp7; | |
| out_ptr319[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr160[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr320[0] = tmp7; | |
| out_ptr321[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr161[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr322[0] = tmp7; | |
| out_ptr323[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr162[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr324[0] = tmp7; | |
| out_ptr325[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr163[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr326[0] = tmp7; | |
| out_ptr327[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr164[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr328[0] = tmp7; | |
| out_ptr329[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr165[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr330[0] = tmp7; | |
| out_ptr331[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr166[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr332[0] = tmp7; | |
| out_ptr333[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr167[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr334[0] = tmp7; | |
| out_ptr335[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr168[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr336[0] = tmp7; | |
| out_ptr337[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr169[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr338[0] = tmp7; | |
| out_ptr339[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr170[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr340[0] = tmp7; | |
| out_ptr341[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr171[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr342[0] = tmp7; | |
| out_ptr343[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr172[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr344[0] = tmp7; | |
| out_ptr345[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr173[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr346[0] = tmp7; | |
| out_ptr347[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr174[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr348[0] = tmp7; | |
| out_ptr349[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr175[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr350[0] = tmp7; | |
| out_ptr351[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr176[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr352[0] = tmp7; | |
| out_ptr353[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr177[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr354[0] = tmp7; | |
| out_ptr355[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr178[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr356[0] = tmp7; | |
| out_ptr357[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr179[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr358[0] = tmp7; | |
| out_ptr359[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr180[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr360[0] = tmp7; | |
| out_ptr361[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr181[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr362[0] = tmp7; | |
| out_ptr363[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr182[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr364[0] = tmp7; | |
| out_ptr365[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr183[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr366[0] = tmp7; | |
| out_ptr367[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr184[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr368[0] = tmp7; | |
| out_ptr369[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr185[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr370[0] = tmp7; | |
| out_ptr371[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr186[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr372[0] = tmp7; | |
| out_ptr373[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr187[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr374[0] = tmp7; | |
| out_ptr375[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr188[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr376[0] = tmp7; | |
| out_ptr377[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr189[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr378[0] = tmp7; | |
| out_ptr379[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr190[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr380[0] = tmp7; | |
| out_ptr381[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr191[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr382[0] = tmp7; | |
| out_ptr383[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr192[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr384[0] = tmp7; | |
| out_ptr385[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr193[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr386[0] = tmp7; | |
| out_ptr387[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr194[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr388[0] = tmp7; | |
| out_ptr389[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr195[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr390[0] = tmp7; | |
| out_ptr391[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr196[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr392[0] = tmp7; | |
| out_ptr393[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr197[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr394[0] = tmp7; | |
| out_ptr395[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr198[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr396[0] = tmp7; | |
| out_ptr397[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr199[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr398[0] = tmp7; | |
| out_ptr399[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr200[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr400[0] = tmp7; | |
| out_ptr401[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr201[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr402[0] = tmp7; | |
| out_ptr403[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr202[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr404[0] = tmp7; | |
| out_ptr405[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr203[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr406[0] = tmp7; | |
| out_ptr407[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr204[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr408[0] = tmp7; | |
| out_ptr409[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr205[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr410[0] = tmp7; | |
| out_ptr411[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr206[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr412[0] = tmp7; | |
| out_ptr413[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr207[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr414[0] = tmp7; | |
| out_ptr415[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr208[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr416[0] = tmp7; | |
| out_ptr417[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr209[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr418[0] = tmp7; | |
| out_ptr419[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr210[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr420[0] = tmp7; | |
| out_ptr421[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr211[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr422[0] = tmp7; | |
| out_ptr423[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr212[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr424[0] = tmp7; | |
| out_ptr425[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr213[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr426[0] = tmp7; | |
| out_ptr427[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr214[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr428[0] = tmp7; | |
| out_ptr429[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr215[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr430[0] = tmp7; | |
| out_ptr431[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr216[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr432[0] = tmp7; | |
| out_ptr433[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr217[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr434[0] = tmp7; | |
| out_ptr435[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr218[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr436[0] = tmp7; | |
| out_ptr437[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr219[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr438[0] = tmp7; | |
| out_ptr439[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr220[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr440[0] = tmp7; | |
| out_ptr441[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr221[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr442[0] = tmp7; | |
| out_ptr443[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr222[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr444[0] = tmp7; | |
| out_ptr445[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr223[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr446[0] = tmp7; | |
| out_ptr447[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr224[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr448[0] = tmp7; | |
| out_ptr449[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr225[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr450[0] = tmp7; | |
| out_ptr451[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr226[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr452[0] = tmp7; | |
| out_ptr453[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr227[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr454[0] = tmp7; | |
| out_ptr455[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr228[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr456[0] = tmp7; | |
| out_ptr457[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr229[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr458[0] = tmp7; | |
| out_ptr459[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr230[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr460[0] = tmp7; | |
| out_ptr461[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr231[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr462[0] = tmp7; | |
| out_ptr463[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr232[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr464[0] = tmp7; | |
| out_ptr465[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr233[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr466[0] = tmp7; | |
| out_ptr467[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr234[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr468[0] = tmp7; | |
| out_ptr469[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr235[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr470[0] = tmp7; | |
| out_ptr471[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr236[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr472[0] = tmp7; | |
| out_ptr473[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr237[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr474[0] = tmp7; | |
| out_ptr475[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr238[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr476[0] = tmp7; | |
| out_ptr477[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr239[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr478[0] = tmp7; | |
| out_ptr479[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr240[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr480[0] = tmp7; | |
| out_ptr481[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr241[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr482[0] = tmp7; | |
| out_ptr483[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr242[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr484[0] = tmp7; | |
| out_ptr485[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr243[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr486[0] = tmp7; | |
| out_ptr487[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr244[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr488[0] = tmp7; | |
| out_ptr489[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr245[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr490[0] = tmp7; | |
| out_ptr491[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr246[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr492[0] = tmp7; | |
| out_ptr493[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr247[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr494[0] = tmp7; | |
| out_ptr495[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr248[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr496[0] = tmp7; | |
| out_ptr497[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr249[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr498[0] = tmp7; | |
| out_ptr499[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr250[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr500[0] = tmp7; | |
| out_ptr501[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr251[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr502[0] = tmp7; | |
| out_ptr503[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr252[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr504[0] = tmp7; | |
| out_ptr505[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr253[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr506[0] = tmp7; | |
| out_ptr507[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr254[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr508[0] = tmp7; | |
| out_ptr509[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr255[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr510[0] = tmp7; | |
| out_ptr511[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr256[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr512[0] = tmp7; | |
| out_ptr513[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr257[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr514[0] = tmp7; | |
| out_ptr515[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr258[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr516[0] = tmp7; | |
| out_ptr517[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr259[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr518[0] = tmp7; | |
| out_ptr519[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr260[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr520[0] = tmp7; | |
| out_ptr521[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr261[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr522[0] = tmp7; | |
| out_ptr523[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr262[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr524[0] = tmp7; | |
| out_ptr525[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr263[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr526[0] = tmp7; | |
| out_ptr527[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr264[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr528[0] = tmp7; | |
| out_ptr529[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr265[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr530[0] = tmp7; | |
| out_ptr531[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr266[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr532[0] = tmp7; | |
| out_ptr533[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr267[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr534[0] = tmp7; | |
| out_ptr535[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr268[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr536[0] = tmp7; | |
| out_ptr537[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr269[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr538[0] = tmp7; | |
| out_ptr539[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr270[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr540[0] = tmp7; | |
| out_ptr541[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr271[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr542[0] = tmp7; | |
| out_ptr543[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr272[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr544[0] = tmp7; | |
| out_ptr545[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr273[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr546[0] = tmp7; | |
| out_ptr547[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr274[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr548[0] = tmp7; | |
| out_ptr549[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr275[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr550[0] = tmp7; | |
| out_ptr551[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr276[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr552[0] = tmp7; | |
| out_ptr553[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr277[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr554[0] = tmp7; | |
| out_ptr555[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr278[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr556[0] = tmp7; | |
| out_ptr557[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr279[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr558[0] = tmp7; | |
| out_ptr559[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr280[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr560[0] = tmp7; | |
| out_ptr561[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr281[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr562[0] = tmp7; | |
| out_ptr563[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr282[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr564[0] = tmp7; | |
| out_ptr565[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr283[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr566[0] = tmp7; | |
| out_ptr567[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr284[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr568[0] = tmp7; | |
| out_ptr569[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr285[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr570[0] = tmp7; | |
| out_ptr571[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr286[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr572[0] = tmp7; | |
| out_ptr573[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr287[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr574[0] = tmp7; | |
| out_ptr575[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr288[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr576[0] = tmp7; | |
| out_ptr577[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr289[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr578[0] = tmp7; | |
| out_ptr579[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr290[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr580[0] = tmp7; | |
| out_ptr581[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr291[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr582[0] = tmp7; | |
| out_ptr583[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr292[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr584[0] = tmp7; | |
| out_ptr585[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr293[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr586[0] = tmp7; | |
| out_ptr587[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr294[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr588[0] = tmp7; | |
| out_ptr589[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr295[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr590[0] = tmp7; | |
| out_ptr591[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr296[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr592[0] = tmp7; | |
| out_ptr593[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr297[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr594[0] = tmp7; | |
| out_ptr595[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr298[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr596[0] = tmp7; | |
| out_ptr597[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr299[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr598[0] = tmp7; | |
| out_ptr599[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr300[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr600[0] = tmp7; | |
| out_ptr601[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr301[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr602[0] = tmp7; | |
| out_ptr603[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr302[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr604[0] = tmp7; | |
| out_ptr605[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr303[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr606[0] = tmp7; | |
| out_ptr607[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr304[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr608[0] = tmp7; | |
| out_ptr609[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr305[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr610[0] = tmp7; | |
| out_ptr611[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr306[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr612[0] = tmp7; | |
| out_ptr613[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr307[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr614[0] = tmp7; | |
| out_ptr615[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr308[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr616[0] = tmp7; | |
| out_ptr617[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr309[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr618[0] = tmp7; | |
| out_ptr619[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr310[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr620[0] = tmp7; | |
| out_ptr621[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr311[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr622[0] = tmp7; | |
| out_ptr623[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr312[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr624[0] = tmp7; | |
| out_ptr625[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr313[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr626[0] = tmp7; | |
| out_ptr627[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr314[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr628[0] = tmp7; | |
| out_ptr629[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr315[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr630[0] = tmp7; | |
| out_ptr631[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr316[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr632[0] = tmp7; | |
| out_ptr633[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr317[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr634[0] = tmp7; | |
| out_ptr635[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr318[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr636[0] = tmp7; | |
| out_ptr637[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr319[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr638[0] = tmp7; | |
| out_ptr639[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr320[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr640[0] = tmp7; | |
| out_ptr641[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr321[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr642[0] = tmp7; | |
| out_ptr643[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr322[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr644[0] = tmp7; | |
| out_ptr645[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr323[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr646[0] = tmp7; | |
| out_ptr647[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr324[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr648[0] = tmp7; | |
| out_ptr649[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr325[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr650[0] = tmp7; | |
| out_ptr651[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr326[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr652[0] = tmp7; | |
| out_ptr653[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr327[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr654[0] = tmp7; | |
| out_ptr655[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr328[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr656[0] = tmp7; | |
| out_ptr657[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr329[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr658[0] = tmp7; | |
| out_ptr659[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr330[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr660[0] = tmp7; | |
| out_ptr661[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr331[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr662[0] = tmp7; | |
| out_ptr663[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr332[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr664[0] = tmp7; | |
| out_ptr665[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr333[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr666[0] = tmp7; | |
| out_ptr667[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr334[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr668[0] = tmp7; | |
| out_ptr669[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr335[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr670[0] = tmp7; | |
| out_ptr671[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr336[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr672[0] = tmp7; | |
| out_ptr673[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr337[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr674[0] = tmp7; | |
| out_ptr675[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr338[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr676[0] = tmp7; | |
| out_ptr677[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr339[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr678[0] = tmp7; | |
| out_ptr679[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr340[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr680[0] = tmp7; | |
| out_ptr681[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr341[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr682[0] = tmp7; | |
| out_ptr683[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr342[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr684[0] = tmp7; | |
| out_ptr685[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr343[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr686[0] = tmp7; | |
| out_ptr687[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr344[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr688[0] = tmp7; | |
| out_ptr689[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr345[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr690[0] = tmp7; | |
| out_ptr691[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr346[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr692[0] = tmp7; | |
| out_ptr693[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr347[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr694[0] = tmp7; | |
| out_ptr695[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr348[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr696[0] = tmp7; | |
| out_ptr697[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr349[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr698[0] = tmp7; | |
| out_ptr699[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr350[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr700[0] = tmp7; | |
| out_ptr701[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr351[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr702[0] = tmp7; | |
| out_ptr703[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr352[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr704[0] = tmp7; | |
| out_ptr705[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr353[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr706[0] = tmp7; | |
| out_ptr707[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr354[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr708[0] = tmp7; | |
| out_ptr709[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr355[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr710[0] = tmp7; | |
| out_ptr711[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr356[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr712[0] = tmp7; | |
| out_ptr713[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr357[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr714[0] = tmp7; | |
| out_ptr715[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr358[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr716[0] = tmp7; | |
| out_ptr717[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr359[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr718[0] = tmp7; | |
| out_ptr719[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr360[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr720[0] = tmp7; | |
| out_ptr721[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr361[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr722[0] = tmp7; | |
| out_ptr723[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr362[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr724[0] = tmp7; | |
| out_ptr725[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr363[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| auto tmp3 = static_cast<float>(1000000.0); | |
| auto tmp4 = tmp2 - tmp3; | |
| auto tmp5 = (tmp1 != tmp1) ? tmp1 : std::max(tmp4, tmp1); | |
| auto tmp6 = 1 / tmp5; | |
| auto tmp7 = tmp6 * tmp1; | |
| auto tmp8 = static_cast<float>(1.0000000000000002e-06); | |
| auto tmp9 = tmp2 * tmp8; | |
| auto tmp10 = tmp9 + tmp1; | |
| auto tmp11 = static_cast<float>(0.75); | |
| auto tmp12 = std::pow(tmp10, tmp11); | |
| auto tmp13 = 1 / tmp12; | |
| auto tmp14 = static_cast<float>(0.01); | |
| auto tmp15 = tmp13 * tmp14; | |
| out_ptr726[0] = tmp7; | |
| out_ptr727[0] = tmp15; | |
| } | |
| { | |
| auto tmp0 = in_ptr0[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr729[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr1[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr731[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr2[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr733[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr3[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr735[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr4[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr737[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr5[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr739[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr6[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr741[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr7[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr743[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr8[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr745[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr9[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr747[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr10[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr749[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr11[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr751[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr12[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr753[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr13[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr755[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr14[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr757[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr15[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr759[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr16[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr761[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr17[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr763[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr18[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr765[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr19[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr767[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr20[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr769[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr21[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr771[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr22[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr773[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr23[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr775[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr24[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr777[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr25[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr779[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr26[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr781[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr27[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr783[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr28[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr785[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr29[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr787[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr30[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr789[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr31[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr791[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr32[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr793[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr33[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr795[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr34[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr797[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr35[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr799[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr36[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr801[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr37[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr803[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr38[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr805[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr39[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr807[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr40[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr809[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr41[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr811[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr42[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr813[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr43[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr815[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr44[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr817[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr45[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr819[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr46[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr821[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr47[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr823[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr48[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr825[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr49[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr827[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr50[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr829[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr51[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr831[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr52[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr833[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr53[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr835[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr54[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr837[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr55[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr839[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr56[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr841[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr57[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr843[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr58[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr845[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr59[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr847[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr60[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr849[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr61[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr851[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr62[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr853[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr63[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr855[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr64[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr857[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr65[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr859[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr66[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr861[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr67[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr863[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr68[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr865[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr69[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr867[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr70[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr869[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr71[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr871[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr72[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr873[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr73[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr875[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr74[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr877[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr75[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr879[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr76[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr881[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr77[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr883[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr78[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr885[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr79[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr887[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr80[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr889[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr81[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr891[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr82[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr893[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr83[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr895[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr84[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr897[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr85[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr899[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr86[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr901[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr87[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr903[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr88[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr905[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr89[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr907[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr90[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr909[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr91[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr911[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr92[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr913[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr93[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr915[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr94[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr917[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr95[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr919[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr96[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr921[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr97[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr923[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr98[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr925[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr99[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr927[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr100[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr929[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr101[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr931[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr102[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr933[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr103[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr935[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr104[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr937[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr105[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr939[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr106[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr941[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr107[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr943[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr108[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr945[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr109[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr947[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr110[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr949[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr111[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr951[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr112[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr953[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr113[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr955[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr114[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr957[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr115[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr959[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr116[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr961[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr117[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr963[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr118[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr965[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr119[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr967[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr120[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr969[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr121[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr971[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr122[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr973[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr123[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr975[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr124[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr977[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr125[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr979[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr126[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr981[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr127[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr983[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr128[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr985[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr129[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr987[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr130[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr989[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr131[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr991[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr132[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr993[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr133[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr995[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr134[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr997[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr135[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr999[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr136[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1001[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr137[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1003[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr138[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1005[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr139[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1007[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr140[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1009[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr141[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1011[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr142[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1013[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr143[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1015[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr144[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1017[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr145[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1019[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr146[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1021[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr147[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1023[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr148[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1025[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr149[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1027[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr150[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1029[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr151[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1031[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr152[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1033[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr153[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1035[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr154[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1037[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr155[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1039[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr156[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1041[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr157[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1043[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr158[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1045[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr159[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1047[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr160[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1049[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr161[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1051[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr162[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1053[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr163[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1055[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr164[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1057[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr165[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1059[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr166[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1061[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr167[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1063[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr168[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1065[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr169[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1067[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr170[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1069[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr171[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1071[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr172[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1073[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr173[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1075[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr174[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1077[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr175[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1079[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr176[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1081[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr177[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1083[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr178[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1085[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr179[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1087[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr180[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1089[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr181[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1091[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr182[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1093[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr183[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1095[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr184[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1097[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr185[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1099[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr186[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1101[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr187[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1103[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr188[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1105[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr189[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1107[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr190[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1109[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr191[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1111[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr192[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1113[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr193[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1115[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr194[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1117[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr195[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1119[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr196[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1121[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr197[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1123[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr198[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1125[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr199[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1127[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr200[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1129[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr201[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1131[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr202[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1133[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr203[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1135[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr204[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1137[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr205[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1139[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr206[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1141[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr207[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1143[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr208[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1145[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr209[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1147[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr210[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1149[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr211[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1151[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr212[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1153[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr213[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1155[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr214[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1157[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr215[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1159[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr216[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1161[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr217[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1163[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr218[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1165[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr219[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1167[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr220[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1169[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr221[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1171[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr222[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1173[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr223[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1175[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr224[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1177[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr225[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1179[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr226[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1181[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr227[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1183[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr228[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1185[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr229[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1187[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr230[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1189[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr231[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1191[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr232[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1193[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr233[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1195[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr234[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1197[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr235[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1199[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr236[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1201[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr237[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1203[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr238[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1205[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr239[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1207[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr240[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1209[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr241[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1211[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr242[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1213[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr243[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1215[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr244[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1217[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr245[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1219[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr246[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1221[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr247[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1223[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr248[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1225[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr249[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1227[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr250[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1229[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr251[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1231[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr252[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1233[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr253[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1235[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr254[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1237[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr255[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1239[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr256[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1241[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr257[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1243[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr258[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1245[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr259[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1247[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr260[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1249[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr261[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1251[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr262[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1253[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr263[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1255[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr264[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1257[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr265[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1259[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr266[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1261[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr267[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1263[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr268[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1265[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr269[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1267[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr270[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1269[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr271[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1271[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr272[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1273[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr273[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1275[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr274[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1277[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr275[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1279[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr276[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1281[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr277[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1283[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr278[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1285[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr279[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1287[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr280[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1289[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr281[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1291[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr282[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1293[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr283[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1295[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr284[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1297[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr285[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1299[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr286[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1301[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr287[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1303[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr288[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1305[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr289[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1307[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr290[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1309[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr291[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1311[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr292[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1313[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr293[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1315[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr294[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1317[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr295[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1319[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr296[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1321[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr297[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1323[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr298[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1325[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr299[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1327[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr300[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1329[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr301[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1331[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr302[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1333[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr303[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1335[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr304[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1337[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr305[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1339[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr306[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1341[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr307[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1343[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr308[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1345[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr309[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1347[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr310[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1349[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr311[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1351[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr312[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1353[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr313[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1355[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr314[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1357[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr315[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1359[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr316[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1361[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr317[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1363[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr318[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1365[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr319[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1367[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr320[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1369[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr321[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1371[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr322[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1373[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr323[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1375[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr324[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1377[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr325[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1379[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr326[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1381[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr327[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1383[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr328[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1385[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr329[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1387[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr330[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1389[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr331[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1391[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr332[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1393[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr333[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1395[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr334[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1397[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr335[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1399[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr336[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1401[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr337[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1403[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr338[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1405[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr339[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1407[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr340[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1409[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr341[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1411[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr342[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1413[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr343[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1415[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr344[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1417[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr345[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1419[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr346[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1421[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr347[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1423[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr348[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1425[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr349[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1427[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr350[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1429[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr351[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1431[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr352[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1433[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr353[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1435[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr354[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1437[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr355[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1439[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr356[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1441[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr357[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1443[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr358[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1445[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr359[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1447[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr360[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1449[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr361[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1451[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr362[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1453[0] = tmp2; | |
| } | |
| { | |
| auto tmp0 = in_ptr363[0]; | |
| auto tmp1 = static_cast<float>(1); | |
| auto tmp2 = tmp0 + tmp1; | |
| out_ptr1455[0] = tmp2; | |
| } | |
| } | |
| ''') | |
| async_compile.wait(globals()) | |
| del async_compile | |
| def call(args): | |
| arg0_1, arg1_1, arg2_1, arg3_1, arg4_1, arg5_1, arg6_1, arg7_1, arg8_1, arg9_1, arg10_1, arg11_1, arg12_1, arg13_1, arg14_1, arg15_1, arg16_1, arg17_1, arg18_1, arg19_1, arg20_1, arg21_1, arg22_1, arg23_1, arg24_1, arg25_1, arg26_1, arg27_1, arg28_1, arg29_1, arg30_1, arg31_1, arg32_1, arg33_1, arg34_1, arg35_1, arg36_1, arg37_1, arg38_1, arg39_1, arg40_1, arg41_1, arg42_1, arg43_1, arg44_1, arg45_1, arg46_1, arg47_1, arg48_1, arg49_1, arg50_1, arg51_1, arg52_1, arg53_1, arg54_1, arg55_1, arg56_1, arg57_1, arg58_1, arg59_1, arg60_1, arg61_1, arg62_1, arg63_1, arg64_1, arg65_1, arg66_1, arg67_1, arg68_1, arg69_1, arg70_1, arg71_1, arg72_1, arg73_1, arg74_1, arg75_1, arg76_1, arg77_1, arg78_1, arg79_1, arg80_1, arg81_1, arg82_1, arg83_1, arg84_1, arg85_1, arg86_1, arg87_1, arg88_1, arg89_1, arg90_1, arg91_1, arg92_1, arg93_1, arg94_1, arg95_1, arg96_1, arg97_1, arg98_1, arg99_1, arg100_1, arg101_1, arg102_1, arg103_1, arg104_1, arg105_1, arg106_1, arg107_1, arg108_1, arg109_1, arg110_1, arg111_1, arg112_1, arg113_1, arg114_1, arg115_1, arg116_1, arg117_1, arg118_1, arg119_1, arg120_1, arg121_1, arg122_1, arg123_1, arg124_1, arg125_1, arg126_1, arg127_1, arg128_1, arg129_1, arg130_1, arg131_1, arg132_1, arg133_1, arg134_1, arg135_1, arg136_1, arg137_1, arg138_1, arg139_1, arg140_1, arg141_1, arg142_1, arg143_1, arg144_1, arg145_1, arg146_1, arg147_1, arg148_1, arg149_1, arg150_1, arg151_1, arg152_1, arg153_1, arg154_1, arg155_1, arg156_1, arg157_1, arg158_1, arg159_1, arg160_1, arg161_1, arg162_1, arg163_1, arg164_1, arg165_1, arg166_1, arg167_1, arg168_1, arg169_1, arg170_1, arg171_1, arg172_1, arg173_1, arg174_1, arg175_1, arg176_1, arg177_1, arg178_1, arg179_1, arg180_1, arg181_1, arg182_1, arg183_1, arg184_1, arg185_1, arg186_1, arg187_1, arg188_1, arg189_1, arg190_1, arg191_1, arg192_1, arg193_1, arg194_1, arg195_1, arg196_1, arg197_1, arg198_1, arg199_1, arg200_1, arg201_1, arg202_1, arg203_1, arg204_1, arg205_1, arg206_1, arg207_1, arg208_1, arg209_1, arg210_1, arg211_1, arg212_1, arg213_1, arg214_1, arg215_1, arg216_1, arg217_1, arg218_1, arg219_1, arg220_1, arg221_1, arg222_1, arg223_1, arg224_1, arg225_1, arg226_1, arg227_1, arg228_1, arg229_1, arg230_1, arg231_1, arg232_1, arg233_1, arg234_1, arg235_1, arg236_1, arg237_1, arg238_1, arg239_1, arg240_1, arg241_1, arg242_1, arg243_1, arg244_1, arg245_1, arg246_1, arg247_1, arg248_1, arg249_1, arg250_1, arg251_1, arg252_1, arg253_1, arg254_1, arg255_1, arg256_1, arg257_1, arg258_1, arg259_1, arg260_1, arg261_1, arg262_1, arg263_1, arg264_1, arg265_1, arg266_1, arg267_1, arg268_1, arg269_1, arg270_1, arg271_1, arg272_1, arg273_1, arg274_1, arg275_1, arg276_1, arg277_1, arg278_1, arg279_1, arg280_1, arg281_1, arg282_1, arg283_1, arg284_1, arg285_1, arg286_1, arg287_1, arg288_1, arg289_1, arg290_1, arg291_1, arg292_1, arg293_1, arg294_1, arg295_1, arg296_1, arg297_1, arg298_1, arg299_1, arg300_1, arg301_1, arg302_1, arg303_1, arg304_1, arg305_1, arg306_1, arg307_1, arg308_1, arg309_1, arg310_1, arg311_1, arg312_1, arg313_1, arg314_1, arg315_1, arg316_1, arg317_1, arg318_1, arg319_1, arg320_1, arg321_1, arg322_1, arg323_1, arg324_1, arg325_1, arg326_1, arg327_1, arg328_1, arg329_1, arg330_1, arg331_1, arg332_1, arg333_1, arg334_1, arg335_1, arg336_1, arg337_1, arg338_1, arg339_1, arg340_1, arg341_1, arg342_1, arg343_1, arg344_1, arg345_1, arg346_1, arg347_1, arg348_1, arg349_1, arg350_1, arg351_1, arg352_1, arg353_1, arg354_1, arg355_1, arg356_1, arg357_1, arg358_1, arg359_1, arg360_1, arg361_1, arg362_1, arg363_1, arg364_1, arg365_1, arg366_1, arg367_1, arg368_1, arg369_1, arg370_1, arg371_1, arg372_1, arg373_1, arg374_1, arg375_1, arg376_1, arg377_1, arg378_1, arg379_1, arg380_1, arg381_1, arg382_1, arg383_1, arg384_1, arg385_1, arg386_1, arg387_1, arg388_1, arg389_1, arg390_1, arg391_1, arg392_1, arg393_1, arg394_1, arg395_1, arg396_1, arg397_1, arg398_1, arg399_1, arg400_1, arg401_1, arg402_1, arg403_1, arg404_1, arg405_1, arg406_1, arg407_1, arg408_1, arg409_1, arg410_1, arg411_1, arg412_1, arg413_1, arg414_1, arg415_1, arg416_1, arg417_1, arg418_1, arg419_1, arg420_1, arg421_1, arg422_1, arg423_1, arg424_1, arg425_1, arg426_1, arg427_1, arg428_1, arg429_1, arg430_1, arg431_1, arg432_1, arg433_1, arg434_1, arg435_1, arg436_1, arg437_1, arg438_1, arg439_1, arg440_1, arg441_1, arg442_1, arg443_1, arg444_1, arg445_1, arg446_1, arg447_1, arg448_1, arg449_1, arg450_1, arg451_1, arg452_1, arg453_1, arg454_1, arg455_1, arg456_1, arg457_1, arg458_1, arg459_1, arg460_1, arg461_1, arg462_1, arg463_1, arg464_1, arg465_1, arg466_1, arg467_1, arg468_1, arg469_1, arg470_1, arg471_1, arg472_1, arg473_1, arg474_1, arg475_1, arg476_1, arg477_1, arg478_1, arg479_1, arg480_1, arg481_1, arg482_1, arg483_1, arg484_1, arg485_1, arg486_1, arg487_1, arg488_1, arg489_1, arg490_1, arg491_1, arg492_1, arg493_1, arg494_1, arg495_1, arg496_1, arg497_1, arg498_1, arg499_1, arg500_1, arg501_1, arg502_1, arg503_1, arg504_1, arg505_1, arg506_1, arg507_1, arg508_1, arg509_1, arg510_1, arg511_1, arg512_1, arg513_1, arg514_1, arg515_1, arg516_1, arg517_1, arg518_1, arg519_1, arg520_1, arg521_1, arg522_1, arg523_1, arg524_1, arg525_1, arg526_1, arg527_1, arg528_1, arg529_1, arg530_1, arg531_1, arg532_1, arg533_1, arg534_1, arg535_1, arg536_1, arg537_1, arg538_1, arg539_1, arg540_1, arg541_1, arg542_1, arg543_1, arg544_1, arg545_1, arg546_1, arg547_1, arg548_1, arg549_1, arg550_1, arg551_1, arg552_1, arg553_1, arg554_1, arg555_1, arg556_1, arg557_1, arg558_1, arg559_1, arg560_1, arg561_1, arg562_1, arg563_1, arg564_1, arg565_1, arg566_1, arg567_1, arg568_1, arg569_1, arg570_1, arg571_1, arg572_1, arg573_1, arg574_1, arg575_1, arg576_1, arg577_1, arg578_1, arg579_1, arg580_1, arg581_1, arg582_1, arg583_1, arg584_1, arg585_1, arg586_1, arg587_1, arg588_1, arg589_1, arg590_1, arg591_1, arg592_1, arg593_1, arg594_1, arg595_1, arg596_1, arg597_1, arg598_1, arg599_1, arg600_1, arg601_1, arg602_1, arg603_1, arg604_1, arg605_1, arg606_1, arg607_1, arg608_1, arg609_1, arg610_1, arg611_1, arg612_1, arg613_1, arg614_1, arg615_1, arg616_1, arg617_1, arg618_1, arg619_1, arg620_1, arg621_1, arg622_1, arg623_1, arg624_1, arg625_1, arg626_1, arg627_1, arg628_1, arg629_1, arg630_1, arg631_1, arg632_1, arg633_1, arg634_1, arg635_1, arg636_1, arg637_1, arg638_1, arg639_1, arg640_1, arg641_1, arg642_1, arg643_1, arg644_1, arg645_1, arg646_1, arg647_1, arg648_1, arg649_1, arg650_1, arg651_1, arg652_1, arg653_1, arg654_1, arg655_1, arg656_1, arg657_1, arg658_1, arg659_1, arg660_1, arg661_1, arg662_1, arg663_1, arg664_1, arg665_1, arg666_1, arg667_1, arg668_1, arg669_1, arg670_1, arg671_1, arg672_1, arg673_1, arg674_1, arg675_1, arg676_1, arg677_1, arg678_1, arg679_1, arg680_1, arg681_1, arg682_1, arg683_1, arg684_1, arg685_1, arg686_1, arg687_1, arg688_1, arg689_1, arg690_1, arg691_1, arg692_1, arg693_1, arg694_1, arg695_1, arg696_1, arg697_1, arg698_1, arg699_1, arg700_1, arg701_1, arg702_1, arg703_1, arg704_1, arg705_1, arg706_1, arg707_1, arg708_1, arg709_1, arg710_1, arg711_1, arg712_1, arg713_1, arg714_1, arg715_1, arg716_1, arg717_1, arg718_1, arg719_1, arg720_1, arg721_1, arg722_1, arg723_1, arg724_1, arg725_1, arg726_1, arg727_1, arg728_1, arg729_1, arg730_1, arg731_1, arg732_1, arg733_1, arg734_1, arg735_1, arg736_1, arg737_1, arg738_1, arg739_1, arg740_1, arg741_1, arg742_1, arg743_1, arg744_1, arg745_1, arg746_1, arg747_1, arg748_1, arg749_1, arg750_1, arg751_1, arg752_1, arg753_1, arg754_1, arg755_1, arg756_1, arg757_1, arg758_1, arg759_1, arg760_1, arg761_1, arg762_1, arg763_1, arg764_1, arg765_1, arg766_1, arg767_1, arg768_1, arg769_1, arg770_1, arg771_1, arg772_1, arg773_1, arg774_1, arg775_1, arg776_1, arg777_1, arg778_1, arg779_1, arg780_1, arg781_1, arg782_1, arg783_1, arg784_1, arg785_1, arg786_1, arg787_1, arg788_1, arg789_1, arg790_1, arg791_1, arg792_1, arg793_1, arg794_1, arg795_1, arg796_1, arg797_1, arg798_1, arg799_1, arg800_1, arg801_1, arg802_1, arg803_1, arg804_1, arg805_1, arg806_1, arg807_1, arg808_1, arg809_1, arg810_1, arg811_1, arg812_1, arg813_1, arg814_1, arg815_1, arg816_1, arg817_1, arg818_1, arg819_1, arg820_1, arg821_1, arg822_1, arg823_1, arg824_1, arg825_1, arg826_1, arg827_1, arg828_1, arg829_1, arg830_1, arg831_1, arg832_1, arg833_1, arg834_1, arg835_1, arg836_1, arg837_1, arg838_1, arg839_1, arg840_1, arg841_1, arg842_1, arg843_1, arg844_1, arg845_1, arg846_1, arg847_1, arg848_1, arg849_1, arg850_1, arg851_1, arg852_1, arg853_1, arg854_1, arg855_1, arg856_1, arg857_1, arg858_1, arg859_1, arg860_1, arg861_1, arg862_1, arg863_1, arg864_1, arg865_1, arg866_1, arg867_1, arg868_1, arg869_1, arg870_1, arg871_1, arg872_1, arg873_1, arg874_1, arg875_1, arg876_1, arg877_1, arg878_1, arg879_1, arg880_1, arg881_1, arg882_1, arg883_1, arg884_1, arg885_1, arg886_1, arg887_1, arg888_1, arg889_1, arg890_1, arg891_1, arg892_1, arg893_1, arg894_1, arg895_1, arg896_1, arg897_1, arg898_1, arg899_1, arg900_1, arg901_1, arg902_1, arg903_1, arg904_1, arg905_1, arg906_1, arg907_1, arg908_1, arg909_1, arg910_1, arg911_1, arg912_1, arg913_1, arg914_1, arg915_1, arg916_1, arg917_1, arg918_1, arg919_1, arg920_1, arg921_1, arg922_1, arg923_1, arg924_1, arg925_1, arg926_1, arg927_1, arg928_1, arg929_1, arg930_1, arg931_1, arg932_1, arg933_1, arg934_1, arg935_1, arg936_1, arg937_1, arg938_1, arg939_1, arg940_1, arg941_1, arg942_1, arg943_1, arg944_1, arg945_1, arg946_1, arg947_1, arg948_1, arg949_1, arg950_1, arg951_1, arg952_1, arg953_1, arg954_1, arg955_1, arg956_1, arg957_1, arg958_1, arg959_1, arg960_1, arg961_1, arg962_1, arg963_1, arg964_1, arg965_1, arg966_1, arg967_1, arg968_1, arg969_1, arg970_1, arg971_1, arg972_1, arg973_1, arg974_1, arg975_1, arg976_1, arg977_1, arg978_1, arg979_1, arg980_1, arg981_1, arg982_1, arg983_1, arg984_1, arg985_1, arg986_1, arg987_1, arg988_1, arg989_1, arg990_1, arg991_1, arg992_1, arg993_1, arg994_1, arg995_1, arg996_1, arg997_1, arg998_1, arg999_1, arg1000_1, arg1001_1, arg1002_1, arg1003_1, arg1004_1, arg1005_1, arg1006_1, arg1007_1, arg1008_1, arg1009_1, arg1010_1, arg1011_1, arg1012_1, arg1013_1, arg1014_1, arg1015_1, arg1016_1, arg1017_1, arg1018_1, arg1019_1, arg1020_1, arg1021_1, arg1022_1, arg1023_1, arg1024_1, arg1025_1, arg1026_1, arg1027_1, arg1028_1, arg1029_1, arg1030_1, arg1031_1, arg1032_1, arg1033_1, arg1034_1, arg1035_1, arg1036_1, arg1037_1, arg1038_1, arg1039_1, arg1040_1, arg1041_1, arg1042_1, arg1043_1, arg1044_1, arg1045_1, arg1046_1, arg1047_1, arg1048_1, arg1049_1, arg1050_1, arg1051_1, arg1052_1, arg1053_1, arg1054_1, arg1055_1, arg1056_1, arg1057_1, arg1058_1, arg1059_1, arg1060_1, arg1061_1, arg1062_1, arg1063_1, arg1064_1, arg1065_1, arg1066_1, arg1067_1, arg1068_1, arg1069_1, arg1070_1, arg1071_1, arg1072_1, arg1073_1, arg1074_1, arg1075_1, arg1076_1, arg1077_1, arg1078_1, arg1079_1, arg1080_1, arg1081_1, arg1082_1, arg1083_1, arg1084_1, arg1085_1, arg1086_1, arg1087_1, arg1088_1, arg1089_1, arg1090_1, arg1091_1, arg1092_1, arg1093_1, arg1094_1, arg1095_1, arg1096_1, arg1097_1, arg1098_1, arg1099_1, arg1100_1, arg1101_1, arg1102_1, arg1103_1, arg1104_1, arg1105_1, arg1106_1, arg1107_1, arg1108_1, arg1109_1, arg1110_1, arg1111_1, arg1112_1, arg1113_1, arg1114_1, arg1115_1, arg1116_1, arg1117_1, arg1118_1, arg1119_1, arg1120_1, arg1121_1, arg1122_1, arg1123_1, arg1124_1, arg1125_1, arg1126_1, arg1127_1, arg1128_1, arg1129_1, arg1130_1, arg1131_1, arg1132_1, arg1133_1, arg1134_1, arg1135_1, arg1136_1, arg1137_1, arg1138_1, arg1139_1, arg1140_1, arg1141_1, arg1142_1, arg1143_1, arg1144_1, arg1145_1, arg1146_1, arg1147_1, arg1148_1, arg1149_1, arg1150_1, arg1151_1, arg1152_1, arg1153_1, arg1154_1, arg1155_1, arg1156_1, arg1157_1, arg1158_1, arg1159_1, arg1160_1, arg1161_1, arg1162_1, arg1163_1, arg1164_1, arg1165_1, arg1166_1, arg1167_1, arg1168_1, arg1169_1, arg1170_1, arg1171_1, arg1172_1, arg1173_1, arg1174_1, arg1175_1, arg1176_1, arg1177_1, arg1178_1, arg1179_1, arg1180_1, arg1181_1, arg1182_1, arg1183_1, arg1184_1, arg1185_1, arg1186_1, arg1187_1, arg1188_1, arg1189_1, arg1190_1, arg1191_1, arg1192_1, arg1193_1, arg1194_1, arg1195_1, arg1196_1, arg1197_1, arg1198_1, arg1199_1, arg1200_1, arg1201_1, arg1202_1, arg1203_1, arg1204_1, arg1205_1, arg1206_1, arg1207_1, arg1208_1, arg1209_1, arg1210_1, arg1211_1, arg1212_1, arg1213_1, arg1214_1, arg1215_1, arg1216_1, arg1217_1, arg1218_1, arg1219_1, arg1220_1, arg1221_1, arg1222_1, arg1223_1, arg1224_1, arg1225_1, arg1226_1, arg1227_1, arg1228_1, arg1229_1, arg1230_1, arg1231_1, arg1232_1, arg1233_1, arg1234_1, arg1235_1, arg1236_1, arg1237_1, arg1238_1, arg1239_1, arg1240_1, arg1241_1, arg1242_1, arg1243_1, arg1244_1, arg1245_1, arg1246_1, arg1247_1, arg1248_1, arg1249_1, arg1250_1, arg1251_1, arg1252_1, arg1253_1, arg1254_1, arg1255_1, arg1256_1, arg1257_1, arg1258_1, arg1259_1, arg1260_1, arg1261_1, arg1262_1, arg1263_1, arg1264_1, arg1265_1, arg1266_1, arg1267_1, arg1268_1, arg1269_1, arg1270_1, arg1271_1, arg1272_1, arg1273_1, arg1274_1, arg1275_1, arg1276_1, arg1277_1, arg1278_1, arg1279_1, arg1280_1, arg1281_1, arg1282_1, arg1283_1, arg1284_1, arg1285_1, arg1286_1, arg1287_1, arg1288_1, arg1289_1, arg1290_1, arg1291_1, arg1292_1, arg1293_1, arg1294_1, arg1295_1, arg1296_1, arg1297_1, arg1298_1, arg1299_1, arg1300_1, arg1301_1, arg1302_1, arg1303_1, arg1304_1, arg1305_1, arg1306_1, arg1307_1, arg1308_1, arg1309_1, arg1310_1, arg1311_1, arg1312_1, arg1313_1, arg1314_1, arg1315_1, arg1316_1, arg1317_1, arg1318_1, arg1319_1, arg1320_1, arg1321_1, arg1322_1, arg1323_1, arg1324_1, arg1325_1, arg1326_1, arg1327_1, arg1328_1, arg1329_1, arg1330_1, arg1331_1, arg1332_1, arg1333_1, arg1334_1, arg1335_1, arg1336_1, arg1337_1, arg1338_1, arg1339_1, arg1340_1, arg1341_1, arg1342_1, arg1343_1, arg1344_1, arg1345_1, arg1346_1, arg1347_1, arg1348_1, arg1349_1, arg1350_1, arg1351_1, arg1352_1, arg1353_1, arg1354_1, arg1355_1, arg1356_1, arg1357_1, arg1358_1, arg1359_1, arg1360_1, arg1361_1, arg1362_1, arg1363_1, arg1364_1, arg1365_1, arg1366_1, arg1367_1, arg1368_1, arg1369_1, arg1370_1, arg1371_1, arg1372_1, arg1373_1, arg1374_1, arg1375_1, arg1376_1, arg1377_1, arg1378_1, arg1379_1, arg1380_1, arg1381_1, arg1382_1, arg1383_1, arg1384_1, arg1385_1, arg1386_1, arg1387_1, arg1388_1, arg1389_1, arg1390_1, arg1391_1, arg1392_1, arg1393_1, arg1394_1, arg1395_1, arg1396_1, arg1397_1, arg1398_1, arg1399_1, arg1400_1, arg1401_1, arg1402_1, arg1403_1, arg1404_1, arg1405_1, arg1406_1, arg1407_1, arg1408_1, arg1409_1, arg1410_1, arg1411_1, arg1412_1, arg1413_1, arg1414_1, arg1415_1, arg1416_1, arg1417_1, arg1418_1, arg1419_1, arg1420_1, arg1421_1, arg1422_1, arg1423_1, arg1424_1, arg1425_1, arg1426_1, arg1427_1, arg1428_1, arg1429_1, arg1430_1, arg1431_1, arg1432_1, arg1433_1, arg1434_1, arg1435_1, arg1436_1, arg1437_1, arg1438_1, arg1439_1, arg1440_1, arg1441_1, arg1442_1, arg1443_1, arg1444_1, arg1445_1, arg1446_1, arg1447_1, arg1448_1, arg1449_1, arg1450_1, arg1451_1, arg1452_1, arg1453_1, arg1454_1, arg1455_1, arg1456_1, arg1457_1, arg1458_1, arg1459_1, arg1460_1, arg1461_1, arg1462_1, arg1463_1, arg1464_1, arg1465_1, arg1466_1, arg1467_1, arg1468_1, arg1469_1, arg1470_1, arg1471_1, arg1472_1, arg1473_1, arg1474_1, arg1475_1, arg1476_1, arg1477_1, arg1478_1, arg1479_1, arg1480_1, arg1481_1, arg1482_1, arg1483_1, arg1484_1, arg1485_1, arg1486_1, arg1487_1, arg1488_1, arg1489_1, arg1490_1, arg1491_1, arg1492_1, arg1493_1, arg1494_1, arg1495_1, arg1496_1, arg1497_1, arg1498_1, arg1499_1, arg1500_1, arg1501_1, arg1502_1, arg1503_1, arg1504_1, arg1505_1, arg1506_1, arg1507_1, arg1508_1, arg1509_1, arg1510_1, arg1511_1, arg1512_1, arg1513_1, arg1514_1, arg1515_1, arg1516_1, arg1517_1, arg1518_1, arg1519_1, arg1520_1, arg1521_1, arg1522_1, arg1523_1, arg1524_1, arg1525_1, arg1526_1, arg1527_1, arg1528_1, arg1529_1, arg1530_1, arg1531_1, arg1532_1, arg1533_1, arg1534_1, arg1535_1, arg1536_1, arg1537_1, arg1538_1, arg1539_1, arg1540_1, arg1541_1, arg1542_1, arg1543_1, arg1544_1, arg1545_1, arg1546_1, arg1547_1, arg1548_1, arg1549_1, arg1550_1, arg1551_1, arg1552_1, arg1553_1, arg1554_1, arg1555_1, arg1556_1, arg1557_1, arg1558_1, arg1559_1, arg1560_1, arg1561_1, arg1562_1, arg1563_1, arg1564_1, arg1565_1, arg1566_1, arg1567_1, arg1568_1, arg1569_1, arg1570_1, arg1571_1, arg1572_1, arg1573_1, arg1574_1, arg1575_1, arg1576_1, arg1577_1, arg1578_1, arg1579_1, arg1580_1, arg1581_1, arg1582_1, arg1583_1, arg1584_1, arg1585_1, arg1586_1, arg1587_1, arg1588_1, arg1589_1, arg1590_1, arg1591_1, arg1592_1, arg1593_1, arg1594_1, arg1595_1, arg1596_1, arg1597_1, arg1598_1, arg1599_1, arg1600_1, arg1601_1, arg1602_1, arg1603_1, arg1604_1, arg1605_1, arg1606_1, arg1607_1, arg1608_1, arg1609_1, arg1610_1, arg1611_1, arg1612_1, arg1613_1, arg1614_1, arg1615_1, arg1616_1, arg1617_1, arg1618_1, arg1619_1, arg1620_1, arg1621_1, arg1622_1, arg1623_1, arg1624_1, arg1625_1, arg1626_1, arg1627_1, arg1628_1, arg1629_1, arg1630_1, arg1631_1, arg1632_1, arg1633_1, arg1634_1, arg1635_1, arg1636_1, arg1637_1, arg1638_1, arg1639_1, arg1640_1, arg1641_1, arg1642_1, arg1643_1, arg1644_1, arg1645_1, arg1646_1, arg1647_1, arg1648_1, arg1649_1, arg1650_1, arg1651_1, arg1652_1, arg1653_1, arg1654_1, arg1655_1, arg1656_1, arg1657_1, arg1658_1, arg1659_1, arg1660_1, arg1661_1, arg1662_1, arg1663_1, arg1664_1, arg1665_1, arg1666_1, arg1667_1, arg1668_1, arg1669_1, arg1670_1, arg1671_1, arg1672_1, arg1673_1, arg1674_1, arg1675_1, arg1676_1, arg1677_1, arg1678_1, arg1679_1, arg1680_1, arg1681_1, arg1682_1, arg1683_1, arg1684_1, arg1685_1, arg1686_1, arg1687_1, arg1688_1, arg1689_1, arg1690_1, arg1691_1, arg1692_1, arg1693_1, arg1694_1, arg1695_1, arg1696_1, arg1697_1, arg1698_1, arg1699_1, arg1700_1, arg1701_1, arg1702_1, arg1703_1, arg1704_1, arg1705_1, arg1706_1, arg1707_1, arg1708_1, arg1709_1, arg1710_1, arg1711_1, arg1712_1, arg1713_1, arg1714_1, arg1715_1, arg1716_1, arg1717_1, arg1718_1, arg1719_1, arg1720_1, arg1721_1, arg1722_1, arg1723_1, arg1724_1, arg1725_1, arg1726_1, arg1727_1, arg1728_1, arg1729_1, arg1730_1, arg1731_1, arg1732_1, arg1733_1, arg1734_1, arg1735_1, arg1736_1, arg1737_1, arg1738_1, arg1739_1, arg1740_1, arg1741_1, arg1742_1, arg1743_1, arg1744_1, arg1745_1, arg1746_1, arg1747_1, arg1748_1, arg1749_1, arg1750_1, arg1751_1, arg1752_1, arg1753_1, arg1754_1, arg1755_1, arg1756_1, arg1757_1, arg1758_1, arg1759_1, arg1760_1, arg1761_1, arg1762_1, arg1763_1, arg1764_1, arg1765_1, arg1766_1, arg1767_1, arg1768_1, arg1769_1, arg1770_1, arg1771_1, arg1772_1, arg1773_1, arg1774_1, arg1775_1, arg1776_1, arg1777_1, arg1778_1, arg1779_1, arg1780_1, arg1781_1, arg1782_1, arg1783_1, arg1784_1, arg1785_1, arg1786_1, arg1787_1, arg1788_1, arg1789_1, arg1790_1, arg1791_1, arg1792_1, arg1793_1, arg1794_1, arg1795_1, arg1796_1, arg1797_1, arg1798_1, arg1799_1, arg1800_1, arg1801_1, arg1802_1, arg1803_1, arg1804_1, arg1805_1, arg1806_1, arg1807_1, arg1808_1, arg1809_1, arg1810_1, arg1811_1, arg1812_1, arg1813_1, arg1814_1, arg1815_1, arg1816_1, arg1817_1, arg1818_1, arg1819_1, arg1820_1, arg1821_1, arg1822_1, arg1823_1, arg1824_1, arg1825_1, arg1826_1, arg1827_1, arg1828_1, arg1829_1, arg1830_1, arg1831_1, arg1832_1, arg1833_1, arg1834_1, arg1835_1, arg1836_1, arg1837_1, arg1838_1, arg1839_1, arg1840_1, arg1841_1, arg1842_1, arg1843_1, arg1844_1, arg1845_1, arg1846_1, arg1847_1, arg1848_1, arg1849_1, arg1850_1, arg1851_1, arg1852_1, arg1853_1, arg1854_1, arg1855_1, arg1856_1, arg1857_1, arg1858_1, arg1859_1, arg1860_1, arg1861_1, arg1862_1, arg1863_1, arg1864_1, arg1865_1, arg1866_1, arg1867_1, arg1868_1, arg1869_1, arg1870_1, arg1871_1, arg1872_1, arg1873_1, arg1874_1, arg1875_1, arg1876_1, arg1877_1, arg1878_1, arg1879_1, arg1880_1, arg1881_1, arg1882_1, arg1883_1, arg1884_1, arg1885_1, arg1886_1, arg1887_1, arg1888_1, arg1889_1, arg1890_1, arg1891_1, arg1892_1, arg1893_1, arg1894_1, arg1895_1, arg1896_1, arg1897_1, arg1898_1, arg1899_1, arg1900_1, arg1901_1, arg1902_1, arg1903_1, arg1904_1, arg1905_1, arg1906_1, arg1907_1, arg1908_1, arg1909_1, arg1910_1, arg1911_1, arg1912_1, arg1913_1, arg1914_1, arg1915_1, arg1916_1, arg1917_1, arg1918_1, arg1919_1, arg1920_1, arg1921_1, arg1922_1, arg1923_1, arg1924_1, arg1925_1, arg1926_1, arg1927_1, arg1928_1, arg1929_1, arg1930_1, arg1931_1, arg1932_1, arg1933_1, arg1934_1, arg1935_1, arg1936_1, arg1937_1, arg1938_1, arg1939_1, arg1940_1, arg1941_1, arg1942_1, arg1943_1, arg1944_1, arg1945_1, arg1946_1, arg1947_1, arg1948_1, arg1949_1, arg1950_1, arg1951_1, arg1952_1, arg1953_1, arg1954_1, arg1955_1, arg1956_1, arg1957_1, arg1958_1, arg1959_1, arg1960_1, arg1961_1, arg1962_1, arg1963_1, arg1964_1, arg1965_1, arg1966_1, arg1967_1, arg1968_1, arg1969_1, arg1970_1, arg1971_1, arg1972_1, arg1973_1, arg1974_1, arg1975_1, arg1976_1, arg1977_1, arg1978_1, arg1979_1, arg1980_1, arg1981_1, arg1982_1, arg1983_1, arg1984_1, arg1985_1, arg1986_1, arg1987_1, arg1988_1, arg1989_1, arg1990_1, arg1991_1, arg1992_1, arg1993_1, arg1994_1, arg1995_1, arg1996_1, arg1997_1, arg1998_1, arg1999_1, arg2000_1, arg2001_1, arg2002_1, arg2003_1, arg2004_1, arg2005_1, arg2006_1, arg2007_1, arg2008_1, arg2009_1, arg2010_1, arg2011_1, arg2012_1, arg2013_1, arg2014_1, arg2015_1, arg2016_1, arg2017_1, arg2018_1, arg2019_1, arg2020_1, arg2021_1, arg2022_1, arg2023_1, arg2024_1, arg2025_1, arg2026_1, arg2027_1, arg2028_1, arg2029_1, arg2030_1, arg2031_1, arg2032_1, arg2033_1, arg2034_1, arg2035_1, arg2036_1, arg2037_1, arg2038_1, arg2039_1, arg2040_1, arg2041_1, arg2042_1, arg2043_1, arg2044_1, arg2045_1, arg2046_1, arg2047_1, arg2048_1, arg2049_1, arg2050_1, arg2051_1, arg2052_1, arg2053_1, arg2054_1, arg2055_1, arg2056_1, arg2057_1, arg2058_1, arg2059_1, arg2060_1, arg2061_1, arg2062_1, arg2063_1, arg2064_1, arg2065_1, arg2066_1, arg2067_1, arg2068_1, arg2069_1, arg2070_1, arg2071_1, arg2072_1, arg2073_1, arg2074_1, arg2075_1, arg2076_1, arg2077_1, arg2078_1, arg2079_1, arg2080_1, arg2081_1, arg2082_1, arg2083_1, arg2084_1, arg2085_1, arg2086_1, arg2087_1, arg2088_1, arg2089_1, arg2090_1, arg2091_1, arg2092_1, arg2093_1, arg2094_1, arg2095_1, arg2096_1, arg2097_1, arg2098_1, arg2099_1, arg2100_1, arg2101_1, arg2102_1, arg2103_1, arg2104_1, arg2105_1, arg2106_1, arg2107_1, arg2108_1, arg2109_1, arg2110_1, arg2111_1, arg2112_1, arg2113_1, arg2114_1, arg2115_1, arg2116_1, arg2117_1, arg2118_1, arg2119_1, arg2120_1, arg2121_1, arg2122_1, arg2123_1, arg2124_1, arg2125_1, arg2126_1, arg2127_1, arg2128_1, arg2129_1, arg2130_1, arg2131_1, arg2132_1, arg2133_1, arg2134_1, arg2135_1, arg2136_1, arg2137_1, arg2138_1, arg2139_1, arg2140_1, arg2141_1, arg2142_1, arg2143_1, arg2144_1, arg2145_1, arg2146_1, arg2147_1, arg2148_1, arg2149_1, arg2150_1, arg2151_1, arg2152_1, arg2153_1, arg2154_1, arg2155_1, arg2156_1, arg2157_1, arg2158_1, arg2159_1, arg2160_1, arg2161_1, arg2162_1, arg2163_1, arg2164_1, arg2165_1, arg2166_1, arg2167_1, arg2168_1, arg2169_1, arg2170_1, arg2171_1, arg2172_1, arg2173_1, arg2174_1, arg2175_1, arg2176_1, arg2177_1, arg2178_1, arg2179_1, arg2180_1, arg2181_1, arg2182_1, arg2183_1 = args | |
| args.clear() | |
| with torch.cuda._DeviceGuard(0): | |
| torch.cuda.set_device(0) # no-op to ensure context | |
| buf0 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| stream0 = get_cuda_stream(0) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg0_1, arg1456_1.item(), arg364_1, arg728_1, arg1092_1.item(), buf0, buf1, arg728_1, arg0_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg0_1 | |
| del arg364_1 | |
| del arg728_1 | |
| buf3 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf4 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg1_1, arg1457_1.item(), arg365_1, arg729_1, arg1093_1.item(), buf3, buf4, arg729_1, arg1_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1_1 | |
| del arg365_1 | |
| del arg729_1 | |
| buf6 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf7 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg2_1, arg1458_1.item(), arg366_1, arg730_1, arg1094_1.item(), buf6, buf7, arg730_1, arg2_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg2_1 | |
| del arg366_1 | |
| del arg730_1 | |
| buf9 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf10 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg3_1, arg1459_1.item(), arg367_1, arg731_1, arg1095_1.item(), buf9, buf10, arg731_1, arg3_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg367_1 | |
| del arg3_1 | |
| del arg731_1 | |
| buf12 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf13 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg4_1, arg1460_1.item(), arg368_1, arg732_1, arg1096_1.item(), buf12, buf13, arg732_1, arg4_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg368_1 | |
| del arg4_1 | |
| del arg732_1 | |
| buf15 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf16 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg5_1, arg1461_1.item(), arg369_1, arg733_1, arg1097_1.item(), buf15, buf16, arg733_1, arg5_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg369_1 | |
| del arg5_1 | |
| del arg733_1 | |
| buf18 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf19 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg6_1, arg1462_1.item(), arg370_1, arg734_1, arg1098_1.item(), buf18, buf19, arg734_1, arg6_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg370_1 | |
| del arg6_1 | |
| del arg734_1 | |
| buf21 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf22 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg7_1, arg1463_1.item(), arg371_1, arg735_1, arg1099_1.item(), buf21, buf22, arg735_1, arg7_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg371_1 | |
| del arg735_1 | |
| del arg7_1 | |
| buf24 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf25 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg8_1, arg1464_1.item(), arg372_1, arg736_1, arg1100_1.item(), buf24, buf25, arg736_1, arg8_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg372_1 | |
| del arg736_1 | |
| del arg8_1 | |
| buf27 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf28 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg9_1, arg1465_1.item(), arg373_1, arg737_1, arg1101_1.item(), buf27, buf28, arg737_1, arg9_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg373_1 | |
| del arg737_1 | |
| del arg9_1 | |
| buf30 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf31 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg10_1, arg1466_1.item(), arg374_1, arg738_1, arg1102_1.item(), buf30, buf31, arg738_1, arg10_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg10_1 | |
| del arg374_1 | |
| del arg738_1 | |
| buf33 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf34 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg11_1, arg1467_1.item(), arg375_1, arg739_1, arg1103_1.item(), buf33, buf34, arg739_1, arg11_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg11_1 | |
| del arg375_1 | |
| del arg739_1 | |
| buf36 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf37 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg12_1, arg1468_1.item(), arg376_1, arg740_1, arg1104_1.item(), buf36, buf37, arg740_1, arg12_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg12_1 | |
| del arg376_1 | |
| del arg740_1 | |
| buf39 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf40 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg13_1, arg1469_1.item(), arg377_1, arg741_1, arg1105_1.item(), buf39, buf40, arg741_1, arg13_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg13_1 | |
| del arg377_1 | |
| del arg741_1 | |
| buf42 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf43 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg14_1, arg1470_1.item(), arg378_1, arg742_1, arg1106_1.item(), buf42, buf43, arg742_1, arg14_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg14_1 | |
| del arg378_1 | |
| del arg742_1 | |
| buf45 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf46 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg15_1, arg1471_1.item(), arg379_1, arg743_1, arg1107_1.item(), buf45, buf46, arg743_1, arg15_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg15_1 | |
| del arg379_1 | |
| del arg743_1 | |
| buf48 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf49 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg16_1, arg1472_1.item(), arg380_1, arg744_1, arg1108_1.item(), buf48, buf49, arg744_1, arg16_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg16_1 | |
| del arg380_1 | |
| del arg744_1 | |
| buf51 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf52 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg17_1, arg1473_1.item(), arg381_1, arg745_1, arg1109_1.item(), buf51, buf52, arg745_1, arg17_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg17_1 | |
| del arg381_1 | |
| del arg745_1 | |
| buf54 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf55 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg18_1, arg1474_1.item(), arg382_1, arg746_1, arg1110_1.item(), buf54, buf55, arg746_1, arg18_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg18_1 | |
| del arg382_1 | |
| del arg746_1 | |
| buf57 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf58 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg19_1, arg1475_1.item(), arg383_1, arg747_1, arg1111_1.item(), buf57, buf58, arg747_1, arg19_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg19_1 | |
| del arg383_1 | |
| del arg747_1 | |
| buf60 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf61 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg20_1, arg1476_1.item(), arg384_1, arg748_1, arg1112_1.item(), buf60, buf61, arg748_1, arg20_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg20_1 | |
| del arg384_1 | |
| del arg748_1 | |
| buf63 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf64 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg21_1, arg1477_1.item(), arg385_1, arg749_1, arg1113_1.item(), buf63, buf64, arg749_1, arg21_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg21_1 | |
| del arg385_1 | |
| del arg749_1 | |
| buf66 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf67 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg22_1, arg1478_1.item(), arg386_1, arg750_1, arg1114_1.item(), buf66, buf67, arg750_1, arg22_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg22_1 | |
| del arg386_1 | |
| del arg750_1 | |
| buf69 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf70 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg23_1, arg1479_1.item(), arg387_1, arg751_1, arg1115_1.item(), buf69, buf70, arg751_1, arg23_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg23_1 | |
| del arg387_1 | |
| del arg751_1 | |
| buf72 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf73 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg24_1, arg1480_1.item(), arg388_1, arg752_1, arg1116_1.item(), buf72, buf73, arg752_1, arg24_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg24_1 | |
| del arg388_1 | |
| del arg752_1 | |
| buf75 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf76 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg25_1, arg1481_1.item(), arg389_1, arg753_1, arg1117_1.item(), buf75, buf76, arg753_1, arg25_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg25_1 | |
| del arg389_1 | |
| del arg753_1 | |
| buf78 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf79 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg26_1, arg1482_1.item(), arg390_1, arg754_1, arg1118_1.item(), buf78, buf79, arg754_1, arg26_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg26_1 | |
| del arg390_1 | |
| del arg754_1 | |
| buf81 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf82 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg27_1, arg1483_1.item(), arg391_1, arg755_1, arg1119_1.item(), buf81, buf82, arg755_1, arg27_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg27_1 | |
| del arg391_1 | |
| del arg755_1 | |
| buf84 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf85 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg28_1, arg1484_1.item(), arg392_1, arg756_1, arg1120_1.item(), buf84, buf85, arg756_1, arg28_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg28_1 | |
| del arg392_1 | |
| del arg756_1 | |
| buf87 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf88 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg29_1, arg1485_1.item(), arg393_1, arg757_1, arg1121_1.item(), buf87, buf88, arg757_1, arg29_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg29_1 | |
| del arg393_1 | |
| del arg757_1 | |
| buf90 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf91 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg30_1, arg1486_1.item(), arg394_1, arg758_1, arg1122_1.item(), buf90, buf91, arg758_1, arg30_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg30_1 | |
| del arg394_1 | |
| del arg758_1 | |
| buf93 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf94 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg31_1, arg1487_1.item(), arg395_1, arg759_1, arg1123_1.item(), buf93, buf94, arg759_1, arg31_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg31_1 | |
| del arg395_1 | |
| del arg759_1 | |
| buf96 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf97 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg32_1, arg1488_1.item(), arg396_1, arg760_1, arg1124_1.item(), buf96, buf97, arg760_1, arg32_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg32_1 | |
| del arg396_1 | |
| del arg760_1 | |
| buf99 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf100 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg33_1, arg1489_1.item(), arg397_1, arg761_1, arg1125_1.item(), buf99, buf100, arg761_1, arg33_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg33_1 | |
| del arg397_1 | |
| del arg761_1 | |
| buf102 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf103 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg34_1, arg1490_1.item(), arg398_1, arg762_1, arg1126_1.item(), buf102, buf103, arg762_1, arg34_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg34_1 | |
| del arg398_1 | |
| del arg762_1 | |
| buf105 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf106 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg35_1, arg1491_1.item(), arg399_1, arg763_1, arg1127_1.item(), buf105, buf106, arg763_1, arg35_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg35_1 | |
| del arg399_1 | |
| del arg763_1 | |
| buf108 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf109 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg36_1, arg1492_1.item(), arg400_1, arg764_1, arg1128_1.item(), buf108, buf109, arg764_1, arg36_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg36_1 | |
| del arg400_1 | |
| del arg764_1 | |
| buf111 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf112 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg37_1, arg1493_1.item(), arg401_1, arg765_1, arg1129_1.item(), buf111, buf112, arg765_1, arg37_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg37_1 | |
| del arg401_1 | |
| del arg765_1 | |
| buf114 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf115 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg38_1, arg1494_1.item(), arg402_1, arg766_1, arg1130_1.item(), buf114, buf115, arg766_1, arg38_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg38_1 | |
| del arg402_1 | |
| del arg766_1 | |
| buf117 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf118 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg39_1, arg1495_1.item(), arg403_1, arg767_1, arg1131_1.item(), buf117, buf118, arg767_1, arg39_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg39_1 | |
| del arg403_1 | |
| del arg767_1 | |
| buf120 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf121 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg40_1, arg1496_1.item(), arg404_1, arg768_1, arg1132_1.item(), buf120, buf121, arg768_1, arg40_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg404_1 | |
| del arg40_1 | |
| del arg768_1 | |
| buf123 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf124 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg41_1, arg1497_1.item(), arg405_1, arg769_1, arg1133_1.item(), buf123, buf124, arg769_1, arg41_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg405_1 | |
| del arg41_1 | |
| del arg769_1 | |
| buf126 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf127 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg42_1, arg1498_1.item(), arg406_1, arg770_1, arg1134_1.item(), buf126, buf127, arg770_1, arg42_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg406_1 | |
| del arg42_1 | |
| del arg770_1 | |
| buf129 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf130 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg43_1, arg1499_1.item(), arg407_1, arg771_1, arg1135_1.item(), buf129, buf130, arg771_1, arg43_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg407_1 | |
| del arg43_1 | |
| del arg771_1 | |
| buf132 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf133 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg44_1, arg1500_1.item(), arg408_1, arg772_1, arg1136_1.item(), buf132, buf133, arg772_1, arg44_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg408_1 | |
| del arg44_1 | |
| del arg772_1 | |
| buf135 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf136 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg45_1, arg1501_1.item(), arg409_1, arg773_1, arg1137_1.item(), buf135, buf136, arg773_1, arg45_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg409_1 | |
| del arg45_1 | |
| del arg773_1 | |
| buf138 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf139 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg46_1, arg1502_1.item(), arg410_1, arg774_1, arg1138_1.item(), buf138, buf139, arg774_1, arg46_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg410_1 | |
| del arg46_1 | |
| del arg774_1 | |
| buf141 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf142 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg47_1, arg1503_1.item(), arg411_1, arg775_1, arg1139_1.item(), buf141, buf142, arg775_1, arg47_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg411_1 | |
| del arg47_1 | |
| del arg775_1 | |
| buf144 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf145 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg48_1, arg1504_1.item(), arg412_1, arg776_1, arg1140_1.item(), buf144, buf145, arg776_1, arg48_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg412_1 | |
| del arg48_1 | |
| del arg776_1 | |
| buf147 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf148 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg49_1, arg1505_1.item(), arg413_1, arg777_1, arg1141_1.item(), buf147, buf148, arg777_1, arg49_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg413_1 | |
| del arg49_1 | |
| del arg777_1 | |
| buf150 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf151 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg50_1, arg1506_1.item(), arg414_1, arg778_1, arg1142_1.item(), buf150, buf151, arg778_1, arg50_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg414_1 | |
| del arg50_1 | |
| del arg778_1 | |
| buf153 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf154 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg51_1, arg1507_1.item(), arg415_1, arg779_1, arg1143_1.item(), buf153, buf154, arg779_1, arg51_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg415_1 | |
| del arg51_1 | |
| del arg779_1 | |
| buf156 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf157 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg52_1, arg1508_1.item(), arg416_1, arg780_1, arg1144_1.item(), buf156, buf157, arg780_1, arg52_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg416_1 | |
| del arg52_1 | |
| del arg780_1 | |
| buf159 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf160 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg53_1, arg1509_1.item(), arg417_1, arg781_1, arg1145_1.item(), buf159, buf160, arg781_1, arg53_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg417_1 | |
| del arg53_1 | |
| del arg781_1 | |
| buf162 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf163 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg54_1, arg1510_1.item(), arg418_1, arg782_1, arg1146_1.item(), buf162, buf163, arg782_1, arg54_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg418_1 | |
| del arg54_1 | |
| del arg782_1 | |
| buf165 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf166 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg55_1, arg1511_1.item(), arg419_1, arg783_1, arg1147_1.item(), buf165, buf166, arg783_1, arg55_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg419_1 | |
| del arg55_1 | |
| del arg783_1 | |
| buf168 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf169 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg56_1, arg1512_1.item(), arg420_1, arg784_1, arg1148_1.item(), buf168, buf169, arg784_1, arg56_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg420_1 | |
| del arg56_1 | |
| del arg784_1 | |
| buf171 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf172 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg57_1, arg1513_1.item(), arg421_1, arg785_1, arg1149_1.item(), buf171, buf172, arg785_1, arg57_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg421_1 | |
| del arg57_1 | |
| del arg785_1 | |
| buf174 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf175 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg58_1, arg1514_1.item(), arg422_1, arg786_1, arg1150_1.item(), buf174, buf175, arg786_1, arg58_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg422_1 | |
| del arg58_1 | |
| del arg786_1 | |
| buf177 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf178 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg59_1, arg1515_1.item(), arg423_1, arg787_1, arg1151_1.item(), buf177, buf178, arg787_1, arg59_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg423_1 | |
| del arg59_1 | |
| del arg787_1 | |
| buf180 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf181 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg60_1, arg1516_1.item(), arg424_1, arg788_1, arg1152_1.item(), buf180, buf181, arg788_1, arg60_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg424_1 | |
| del arg60_1 | |
| del arg788_1 | |
| buf183 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf184 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg61_1, arg1517_1.item(), arg425_1, arg789_1, arg1153_1.item(), buf183, buf184, arg789_1, arg61_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg425_1 | |
| del arg61_1 | |
| del arg789_1 | |
| buf186 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf187 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg62_1, arg1518_1.item(), arg426_1, arg790_1, arg1154_1.item(), buf186, buf187, arg790_1, arg62_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg426_1 | |
| del arg62_1 | |
| del arg790_1 | |
| buf189 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf190 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg63_1, arg1519_1.item(), arg427_1, arg791_1, arg1155_1.item(), buf189, buf190, arg791_1, arg63_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg427_1 | |
| del arg63_1 | |
| del arg791_1 | |
| buf192 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf193 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg64_1, arg1520_1.item(), arg428_1, arg792_1, arg1156_1.item(), buf192, buf193, arg792_1, arg64_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg428_1 | |
| del arg64_1 | |
| del arg792_1 | |
| buf195 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf196 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg65_1, arg1521_1.item(), arg429_1, arg793_1, arg1157_1.item(), buf195, buf196, arg793_1, arg65_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg429_1 | |
| del arg65_1 | |
| del arg793_1 | |
| buf198 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf199 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg66_1, arg1522_1.item(), arg430_1, arg794_1, arg1158_1.item(), buf198, buf199, arg794_1, arg66_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg430_1 | |
| del arg66_1 | |
| del arg794_1 | |
| buf201 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf202 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg67_1, arg1523_1.item(), arg431_1, arg795_1, arg1159_1.item(), buf201, buf202, arg795_1, arg67_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg431_1 | |
| del arg67_1 | |
| del arg795_1 | |
| buf204 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf205 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg68_1, arg1524_1.item(), arg432_1, arg796_1, arg1160_1.item(), buf204, buf205, arg796_1, arg68_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg432_1 | |
| del arg68_1 | |
| del arg796_1 | |
| buf207 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf208 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg69_1, arg1525_1.item(), arg433_1, arg797_1, arg1161_1.item(), buf207, buf208, arg797_1, arg69_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg433_1 | |
| del arg69_1 | |
| del arg797_1 | |
| buf210 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf211 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg70_1, arg1526_1.item(), arg434_1, arg798_1, arg1162_1.item(), buf210, buf211, arg798_1, arg70_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg434_1 | |
| del arg70_1 | |
| del arg798_1 | |
| buf213 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf214 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg71_1, arg1527_1.item(), arg435_1, arg799_1, arg1163_1.item(), buf213, buf214, arg799_1, arg71_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg435_1 | |
| del arg71_1 | |
| del arg799_1 | |
| buf216 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf217 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg72_1, arg1528_1.item(), arg436_1, arg800_1, arg1164_1.item(), buf216, buf217, arg800_1, arg72_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg436_1 | |
| del arg72_1 | |
| del arg800_1 | |
| buf219 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf220 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg73_1, arg1529_1.item(), arg437_1, arg801_1, arg1165_1.item(), buf219, buf220, arg801_1, arg73_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg437_1 | |
| del arg73_1 | |
| del arg801_1 | |
| buf222 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf223 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg74_1, arg1530_1.item(), arg438_1, arg802_1, arg1166_1.item(), buf222, buf223, arg802_1, arg74_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg438_1 | |
| del arg74_1 | |
| del arg802_1 | |
| buf225 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf226 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg75_1, arg1531_1.item(), arg439_1, arg803_1, arg1167_1.item(), buf225, buf226, arg803_1, arg75_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg439_1 | |
| del arg75_1 | |
| del arg803_1 | |
| buf228 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf229 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg76_1, arg1532_1.item(), arg440_1, arg804_1, arg1168_1.item(), buf228, buf229, arg804_1, arg76_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg440_1 | |
| del arg76_1 | |
| del arg804_1 | |
| buf231 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf232 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg77_1, arg1533_1.item(), arg441_1, arg805_1, arg1169_1.item(), buf231, buf232, arg805_1, arg77_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg441_1 | |
| del arg77_1 | |
| del arg805_1 | |
| buf234 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf235 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg78_1, arg1534_1.item(), arg442_1, arg806_1, arg1170_1.item(), buf234, buf235, arg806_1, arg78_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg442_1 | |
| del arg78_1 | |
| del arg806_1 | |
| buf237 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf238 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg79_1, arg1535_1.item(), arg443_1, arg807_1, arg1171_1.item(), buf237, buf238, arg807_1, arg79_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg443_1 | |
| del arg79_1 | |
| del arg807_1 | |
| buf240 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf241 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg80_1, arg1536_1.item(), arg444_1, arg808_1, arg1172_1.item(), buf240, buf241, arg808_1, arg80_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg444_1 | |
| del arg808_1 | |
| del arg80_1 | |
| buf243 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf244 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg81_1, arg1537_1.item(), arg445_1, arg809_1, arg1173_1.item(), buf243, buf244, arg809_1, arg81_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg445_1 | |
| del arg809_1 | |
| del arg81_1 | |
| buf246 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf247 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg82_1, arg1538_1.item(), arg446_1, arg810_1, arg1174_1.item(), buf246, buf247, arg810_1, arg82_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg446_1 | |
| del arg810_1 | |
| del arg82_1 | |
| buf249 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf250 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg83_1, arg1539_1.item(), arg447_1, arg811_1, arg1175_1.item(), buf249, buf250, arg811_1, arg83_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg447_1 | |
| del arg811_1 | |
| del arg83_1 | |
| buf252 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf253 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg84_1, arg1540_1.item(), arg448_1, arg812_1, arg1176_1.item(), buf252, buf253, arg812_1, arg84_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg448_1 | |
| del arg812_1 | |
| del arg84_1 | |
| buf255 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf256 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg85_1, arg1541_1.item(), arg449_1, arg813_1, arg1177_1.item(), buf255, buf256, arg813_1, arg85_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg449_1 | |
| del arg813_1 | |
| del arg85_1 | |
| buf258 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf259 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg86_1, arg1542_1.item(), arg450_1, arg814_1, arg1178_1.item(), buf258, buf259, arg814_1, arg86_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg450_1 | |
| del arg814_1 | |
| del arg86_1 | |
| buf261 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf262 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg87_1, arg1543_1.item(), arg451_1, arg815_1, arg1179_1.item(), buf261, buf262, arg815_1, arg87_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg451_1 | |
| del arg815_1 | |
| del arg87_1 | |
| buf264 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf265 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg88_1, arg1544_1.item(), arg452_1, arg816_1, arg1180_1.item(), buf264, buf265, arg816_1, arg88_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg452_1 | |
| del arg816_1 | |
| del arg88_1 | |
| buf267 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf268 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg89_1, arg1545_1.item(), arg453_1, arg817_1, arg1181_1.item(), buf267, buf268, arg817_1, arg89_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg453_1 | |
| del arg817_1 | |
| del arg89_1 | |
| buf270 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf271 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg90_1, arg1546_1.item(), arg454_1, arg818_1, arg1182_1.item(), buf270, buf271, arg818_1, arg90_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg454_1 | |
| del arg818_1 | |
| del arg90_1 | |
| buf273 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf274 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg91_1, arg1547_1.item(), arg455_1, arg819_1, arg1183_1.item(), buf273, buf274, arg819_1, arg91_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg455_1 | |
| del arg819_1 | |
| del arg91_1 | |
| buf276 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf277 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg92_1, arg1548_1.item(), arg456_1, arg820_1, arg1184_1.item(), buf276, buf277, arg820_1, arg92_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg456_1 | |
| del arg820_1 | |
| del arg92_1 | |
| buf279 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf280 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg93_1, arg1549_1.item(), arg457_1, arg821_1, arg1185_1.item(), buf279, buf280, arg821_1, arg93_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg457_1 | |
| del arg821_1 | |
| del arg93_1 | |
| buf282 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf283 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg94_1, arg1550_1.item(), arg458_1, arg822_1, arg1186_1.item(), buf282, buf283, arg822_1, arg94_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg458_1 | |
| del arg822_1 | |
| del arg94_1 | |
| buf285 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf286 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg95_1, arg1551_1.item(), arg459_1, arg823_1, arg1187_1.item(), buf285, buf286, arg823_1, arg95_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg459_1 | |
| del arg823_1 | |
| del arg95_1 | |
| buf288 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf289 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg96_1, arg1552_1.item(), arg460_1, arg824_1, arg1188_1.item(), buf288, buf289, arg824_1, arg96_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg460_1 | |
| del arg824_1 | |
| del arg96_1 | |
| buf291 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf292 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg97_1, arg1553_1.item(), arg461_1, arg825_1, arg1189_1.item(), buf291, buf292, arg825_1, arg97_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg461_1 | |
| del arg825_1 | |
| del arg97_1 | |
| buf294 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf295 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg98_1, arg1554_1.item(), arg462_1, arg826_1, arg1190_1.item(), buf294, buf295, arg826_1, arg98_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg462_1 | |
| del arg826_1 | |
| del arg98_1 | |
| buf297 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf298 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg99_1, arg1555_1.item(), arg463_1, arg827_1, arg1191_1.item(), buf297, buf298, arg827_1, arg99_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg463_1 | |
| del arg827_1 | |
| del arg99_1 | |
| buf300 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf301 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg100_1, arg1556_1.item(), arg464_1, arg828_1, arg1192_1.item(), buf300, buf301, arg828_1, arg100_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg100_1 | |
| del arg464_1 | |
| del arg828_1 | |
| buf303 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf304 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg101_1, arg1557_1.item(), arg465_1, arg829_1, arg1193_1.item(), buf303, buf304, arg829_1, arg101_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg101_1 | |
| del arg465_1 | |
| del arg829_1 | |
| buf306 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf307 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg102_1, arg1558_1.item(), arg466_1, arg830_1, arg1194_1.item(), buf306, buf307, arg830_1, arg102_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg102_1 | |
| del arg466_1 | |
| del arg830_1 | |
| buf309 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf310 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg103_1, arg1559_1.item(), arg467_1, arg831_1, arg1195_1.item(), buf309, buf310, arg831_1, arg103_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg103_1 | |
| del arg467_1 | |
| del arg831_1 | |
| buf312 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf313 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg104_1, arg1560_1.item(), arg468_1, arg832_1, arg1196_1.item(), buf312, buf313, arg832_1, arg104_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg104_1 | |
| del arg468_1 | |
| del arg832_1 | |
| buf315 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf316 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg105_1, arg1561_1.item(), arg469_1, arg833_1, arg1197_1.item(), buf315, buf316, arg833_1, arg105_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg105_1 | |
| del arg469_1 | |
| del arg833_1 | |
| buf318 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf319 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg106_1, arg1562_1.item(), arg470_1, arg834_1, arg1198_1.item(), buf318, buf319, arg834_1, arg106_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg106_1 | |
| del arg470_1 | |
| del arg834_1 | |
| buf321 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf322 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg107_1, arg1563_1.item(), arg471_1, arg835_1, arg1199_1.item(), buf321, buf322, arg835_1, arg107_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg107_1 | |
| del arg471_1 | |
| del arg835_1 | |
| buf324 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf325 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg108_1, arg1564_1.item(), arg472_1, arg836_1, arg1200_1.item(), buf324, buf325, arg836_1, arg108_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg108_1 | |
| del arg472_1 | |
| del arg836_1 | |
| buf327 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf328 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg109_1, arg1565_1.item(), arg473_1, arg837_1, arg1201_1.item(), buf327, buf328, arg837_1, arg109_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg109_1 | |
| del arg473_1 | |
| del arg837_1 | |
| buf330 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf331 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg110_1, arg1566_1.item(), arg474_1, arg838_1, arg1202_1.item(), buf330, buf331, arg838_1, arg110_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg110_1 | |
| del arg474_1 | |
| del arg838_1 | |
| buf333 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf334 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg111_1, arg1567_1.item(), arg475_1, arg839_1, arg1203_1.item(), buf333, buf334, arg839_1, arg111_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg111_1 | |
| del arg475_1 | |
| del arg839_1 | |
| buf336 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf337 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg112_1, arg1568_1.item(), arg476_1, arg840_1, arg1204_1.item(), buf336, buf337, arg840_1, arg112_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg112_1 | |
| del arg476_1 | |
| del arg840_1 | |
| buf339 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf340 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg113_1, arg1569_1.item(), arg477_1, arg841_1, arg1205_1.item(), buf339, buf340, arg841_1, arg113_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg113_1 | |
| del arg477_1 | |
| del arg841_1 | |
| buf342 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf343 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg114_1, arg1570_1.item(), arg478_1, arg842_1, arg1206_1.item(), buf342, buf343, arg842_1, arg114_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg114_1 | |
| del arg478_1 | |
| del arg842_1 | |
| buf345 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf346 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg115_1, arg1571_1.item(), arg479_1, arg843_1, arg1207_1.item(), buf345, buf346, arg843_1, arg115_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg115_1 | |
| del arg479_1 | |
| del arg843_1 | |
| buf348 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf349 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg116_1, arg1572_1.item(), arg480_1, arg844_1, arg1208_1.item(), buf348, buf349, arg844_1, arg116_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg116_1 | |
| del arg480_1 | |
| del arg844_1 | |
| buf351 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf352 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg117_1, arg1573_1.item(), arg481_1, arg845_1, arg1209_1.item(), buf351, buf352, arg845_1, arg117_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg117_1 | |
| del arg481_1 | |
| del arg845_1 | |
| buf354 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf355 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg118_1, arg1574_1.item(), arg482_1, arg846_1, arg1210_1.item(), buf354, buf355, arg846_1, arg118_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg118_1 | |
| del arg482_1 | |
| del arg846_1 | |
| buf357 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf358 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg119_1, arg1575_1.item(), arg483_1, arg847_1, arg1211_1.item(), buf357, buf358, arg847_1, arg119_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg119_1 | |
| del arg483_1 | |
| del arg847_1 | |
| buf360 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf361 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg120_1, arg1576_1.item(), arg484_1, arg848_1, arg1212_1.item(), buf360, buf361, arg848_1, arg120_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg120_1 | |
| del arg484_1 | |
| del arg848_1 | |
| buf363 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf364 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg121_1, arg1577_1.item(), arg485_1, arg849_1, arg1213_1.item(), buf363, buf364, arg849_1, arg121_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg121_1 | |
| del arg485_1 | |
| del arg849_1 | |
| buf366 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf367 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg122_1, arg1578_1.item(), arg486_1, arg850_1, arg1214_1.item(), buf366, buf367, arg850_1, arg122_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg122_1 | |
| del arg486_1 | |
| del arg850_1 | |
| buf369 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf370 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg123_1, arg1579_1.item(), arg487_1, arg851_1, arg1215_1.item(), buf369, buf370, arg851_1, arg123_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg123_1 | |
| del arg487_1 | |
| del arg851_1 | |
| buf372 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf373 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg124_1, arg1580_1.item(), arg488_1, arg852_1, arg1216_1.item(), buf372, buf373, arg852_1, arg124_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg124_1 | |
| del arg488_1 | |
| del arg852_1 | |
| buf375 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf376 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg125_1, arg1581_1.item(), arg489_1, arg853_1, arg1217_1.item(), buf375, buf376, arg853_1, arg125_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg125_1 | |
| del arg489_1 | |
| del arg853_1 | |
| buf378 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf379 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg126_1, arg1582_1.item(), arg490_1, arg854_1, arg1218_1.item(), buf378, buf379, arg854_1, arg126_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg126_1 | |
| del arg490_1 | |
| del arg854_1 | |
| buf381 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf382 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg127_1, arg1583_1.item(), arg491_1, arg855_1, arg1219_1.item(), buf381, buf382, arg855_1, arg127_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg127_1 | |
| del arg491_1 | |
| del arg855_1 | |
| buf384 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf385 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg128_1, arg1584_1.item(), arg492_1, arg856_1, arg1220_1.item(), buf384, buf385, arg856_1, arg128_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg128_1 | |
| del arg492_1 | |
| del arg856_1 | |
| buf387 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf388 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg129_1, arg1585_1.item(), arg493_1, arg857_1, arg1221_1.item(), buf387, buf388, arg857_1, arg129_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg129_1 | |
| del arg493_1 | |
| del arg857_1 | |
| buf390 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf391 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg130_1, arg1586_1.item(), arg494_1, arg858_1, arg1222_1.item(), buf390, buf391, arg858_1, arg130_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg130_1 | |
| del arg494_1 | |
| del arg858_1 | |
| buf393 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf394 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg131_1, arg1587_1.item(), arg495_1, arg859_1, arg1223_1.item(), buf393, buf394, arg859_1, arg131_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg131_1 | |
| del arg495_1 | |
| del arg859_1 | |
| buf396 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf397 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg132_1, arg1588_1.item(), arg496_1, arg860_1, arg1224_1.item(), buf396, buf397, arg860_1, arg132_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg132_1 | |
| del arg496_1 | |
| del arg860_1 | |
| buf399 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf400 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg133_1, arg1589_1.item(), arg497_1, arg861_1, arg1225_1.item(), buf399, buf400, arg861_1, arg133_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg133_1 | |
| del arg497_1 | |
| del arg861_1 | |
| buf402 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf403 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg134_1, arg1590_1.item(), arg498_1, arg862_1, arg1226_1.item(), buf402, buf403, arg862_1, arg134_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg134_1 | |
| del arg498_1 | |
| del arg862_1 | |
| buf405 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf406 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg135_1, arg1591_1.item(), arg499_1, arg863_1, arg1227_1.item(), buf405, buf406, arg863_1, arg135_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg135_1 | |
| del arg499_1 | |
| del arg863_1 | |
| buf408 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf409 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg136_1, arg1592_1.item(), arg500_1, arg864_1, arg1228_1.item(), buf408, buf409, arg864_1, arg136_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg136_1 | |
| del arg500_1 | |
| del arg864_1 | |
| buf411 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf412 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg137_1, arg1593_1.item(), arg501_1, arg865_1, arg1229_1.item(), buf411, buf412, arg865_1, arg137_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg137_1 | |
| del arg501_1 | |
| del arg865_1 | |
| buf414 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf415 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg138_1, arg1594_1.item(), arg502_1, arg866_1, arg1230_1.item(), buf414, buf415, arg866_1, arg138_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg138_1 | |
| del arg502_1 | |
| del arg866_1 | |
| buf417 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf418 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg139_1, arg1595_1.item(), arg503_1, arg867_1, arg1231_1.item(), buf417, buf418, arg867_1, arg139_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg139_1 | |
| del arg503_1 | |
| del arg867_1 | |
| buf420 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf421 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg140_1, arg1596_1.item(), arg504_1, arg868_1, arg1232_1.item(), buf420, buf421, arg868_1, arg140_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg140_1 | |
| del arg504_1 | |
| del arg868_1 | |
| buf423 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf424 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg141_1, arg1597_1.item(), arg505_1, arg869_1, arg1233_1.item(), buf423, buf424, arg869_1, arg141_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg141_1 | |
| del arg505_1 | |
| del arg869_1 | |
| buf426 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf427 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg142_1, arg1598_1.item(), arg506_1, arg870_1, arg1234_1.item(), buf426, buf427, arg870_1, arg142_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg142_1 | |
| del arg506_1 | |
| del arg870_1 | |
| buf429 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf430 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg143_1, arg1599_1.item(), arg507_1, arg871_1, arg1235_1.item(), buf429, buf430, arg871_1, arg143_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg143_1 | |
| del arg507_1 | |
| del arg871_1 | |
| buf432 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf433 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg144_1, arg1600_1.item(), arg508_1, arg872_1, arg1236_1.item(), buf432, buf433, arg872_1, arg144_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg144_1 | |
| del arg508_1 | |
| del arg872_1 | |
| buf435 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf436 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg145_1, arg1601_1.item(), arg509_1, arg873_1, arg1237_1.item(), buf435, buf436, arg873_1, arg145_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg145_1 | |
| del arg509_1 | |
| del arg873_1 | |
| buf438 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf439 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg146_1, arg1602_1.item(), arg510_1, arg874_1, arg1238_1.item(), buf438, buf439, arg874_1, arg146_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg146_1 | |
| del arg510_1 | |
| del arg874_1 | |
| buf441 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf442 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg147_1, arg1603_1.item(), arg511_1, arg875_1, arg1239_1.item(), buf441, buf442, arg875_1, arg147_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg147_1 | |
| del arg511_1 | |
| del arg875_1 | |
| buf444 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf445 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg148_1, arg1604_1.item(), arg512_1, arg876_1, arg1240_1.item(), buf444, buf445, arg876_1, arg148_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg148_1 | |
| del arg512_1 | |
| del arg876_1 | |
| buf447 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf448 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg149_1, arg1605_1.item(), arg513_1, arg877_1, arg1241_1.item(), buf447, buf448, arg877_1, arg149_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg149_1 | |
| del arg513_1 | |
| del arg877_1 | |
| buf450 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf451 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg150_1, arg1606_1.item(), arg514_1, arg878_1, arg1242_1.item(), buf450, buf451, arg878_1, arg150_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg150_1 | |
| del arg514_1 | |
| del arg878_1 | |
| buf453 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf454 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg151_1, arg1607_1.item(), arg515_1, arg879_1, arg1243_1.item(), buf453, buf454, arg879_1, arg151_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg151_1 | |
| del arg515_1 | |
| del arg879_1 | |
| buf456 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf457 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg152_1, arg1608_1.item(), arg516_1, arg880_1, arg1244_1.item(), buf456, buf457, arg880_1, arg152_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg152_1 | |
| del arg516_1 | |
| del arg880_1 | |
| buf459 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf460 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg153_1, arg1609_1.item(), arg517_1, arg881_1, arg1245_1.item(), buf459, buf460, arg881_1, arg153_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg153_1 | |
| del arg517_1 | |
| del arg881_1 | |
| buf462 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf463 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg154_1, arg1610_1.item(), arg518_1, arg882_1, arg1246_1.item(), buf462, buf463, arg882_1, arg154_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg154_1 | |
| del arg518_1 | |
| del arg882_1 | |
| buf465 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf466 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg155_1, arg1611_1.item(), arg519_1, arg883_1, arg1247_1.item(), buf465, buf466, arg883_1, arg155_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg155_1 | |
| del arg519_1 | |
| del arg883_1 | |
| buf468 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf469 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg156_1, arg1612_1.item(), arg520_1, arg884_1, arg1248_1.item(), buf468, buf469, arg884_1, arg156_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg156_1 | |
| del arg520_1 | |
| del arg884_1 | |
| buf471 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf472 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg157_1, arg1613_1.item(), arg521_1, arg885_1, arg1249_1.item(), buf471, buf472, arg885_1, arg157_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg157_1 | |
| del arg521_1 | |
| del arg885_1 | |
| buf474 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf475 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg158_1, arg1614_1.item(), arg522_1, arg886_1, arg1250_1.item(), buf474, buf475, arg886_1, arg158_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg158_1 | |
| del arg522_1 | |
| del arg886_1 | |
| buf477 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf478 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg159_1, arg1615_1.item(), arg523_1, arg887_1, arg1251_1.item(), buf477, buf478, arg887_1, arg159_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg159_1 | |
| del arg523_1 | |
| del arg887_1 | |
| buf480 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf481 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg160_1, arg1616_1.item(), arg524_1, arg888_1, arg1252_1.item(), buf480, buf481, arg888_1, arg160_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg160_1 | |
| del arg524_1 | |
| del arg888_1 | |
| buf483 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf484 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg161_1, arg1617_1.item(), arg525_1, arg889_1, arg1253_1.item(), buf483, buf484, arg889_1, arg161_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg161_1 | |
| del arg525_1 | |
| del arg889_1 | |
| buf486 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf487 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg162_1, arg1618_1.item(), arg526_1, arg890_1, arg1254_1.item(), buf486, buf487, arg890_1, arg162_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg162_1 | |
| del arg526_1 | |
| del arg890_1 | |
| buf489 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf490 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg163_1, arg1619_1.item(), arg527_1, arg891_1, arg1255_1.item(), buf489, buf490, arg891_1, arg163_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg163_1 | |
| del arg527_1 | |
| del arg891_1 | |
| buf492 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf493 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg164_1, arg1620_1.item(), arg528_1, arg892_1, arg1256_1.item(), buf492, buf493, arg892_1, arg164_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg164_1 | |
| del arg528_1 | |
| del arg892_1 | |
| buf495 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf496 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg165_1, arg1621_1.item(), arg529_1, arg893_1, arg1257_1.item(), buf495, buf496, arg893_1, arg165_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg165_1 | |
| del arg529_1 | |
| del arg893_1 | |
| buf498 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf499 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg166_1, arg1622_1.item(), arg530_1, arg894_1, arg1258_1.item(), buf498, buf499, arg894_1, arg166_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg166_1 | |
| del arg530_1 | |
| del arg894_1 | |
| buf501 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf502 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg167_1, arg1623_1.item(), arg531_1, arg895_1, arg1259_1.item(), buf501, buf502, arg895_1, arg167_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg167_1 | |
| del arg531_1 | |
| del arg895_1 | |
| buf504 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf505 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg168_1, arg1624_1.item(), arg532_1, arg896_1, arg1260_1.item(), buf504, buf505, arg896_1, arg168_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg168_1 | |
| del arg532_1 | |
| del arg896_1 | |
| buf507 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf508 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg169_1, arg1625_1.item(), arg533_1, arg897_1, arg1261_1.item(), buf507, buf508, arg897_1, arg169_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg169_1 | |
| del arg533_1 | |
| del arg897_1 | |
| buf510 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf511 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg170_1, arg1626_1.item(), arg534_1, arg898_1, arg1262_1.item(), buf510, buf511, arg898_1, arg170_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg170_1 | |
| del arg534_1 | |
| del arg898_1 | |
| buf513 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf514 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg171_1, arg1627_1.item(), arg535_1, arg899_1, arg1263_1.item(), buf513, buf514, arg899_1, arg171_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg171_1 | |
| del arg535_1 | |
| del arg899_1 | |
| buf516 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf517 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg172_1, arg1628_1.item(), arg536_1, arg900_1, arg1264_1.item(), buf516, buf517, arg900_1, arg172_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg172_1 | |
| del arg536_1 | |
| del arg900_1 | |
| buf519 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf520 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg173_1, arg1629_1.item(), arg537_1, arg901_1, arg1265_1.item(), buf519, buf520, arg901_1, arg173_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg173_1 | |
| del arg537_1 | |
| del arg901_1 | |
| buf522 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf523 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg174_1, arg1630_1.item(), arg538_1, arg902_1, arg1266_1.item(), buf522, buf523, arg902_1, arg174_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg174_1 | |
| del arg538_1 | |
| del arg902_1 | |
| buf525 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf526 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg175_1, arg1631_1.item(), arg539_1, arg903_1, arg1267_1.item(), buf525, buf526, arg903_1, arg175_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg175_1 | |
| del arg539_1 | |
| del arg903_1 | |
| buf528 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf529 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg176_1, arg1632_1.item(), arg540_1, arg904_1, arg1268_1.item(), buf528, buf529, arg904_1, arg176_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg176_1 | |
| del arg540_1 | |
| del arg904_1 | |
| buf531 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf532 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg177_1, arg1633_1.item(), arg541_1, arg905_1, arg1269_1.item(), buf531, buf532, arg905_1, arg177_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg177_1 | |
| del arg541_1 | |
| del arg905_1 | |
| buf534 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf535 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg178_1, arg1634_1.item(), arg542_1, arg906_1, arg1270_1.item(), buf534, buf535, arg906_1, arg178_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg178_1 | |
| del arg542_1 | |
| del arg906_1 | |
| buf537 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf538 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg179_1, arg1635_1.item(), arg543_1, arg907_1, arg1271_1.item(), buf537, buf538, arg907_1, arg179_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg179_1 | |
| del arg543_1 | |
| del arg907_1 | |
| buf540 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf541 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg180_1, arg1636_1.item(), arg544_1, arg908_1, arg1272_1.item(), buf540, buf541, arg908_1, arg180_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg180_1 | |
| del arg544_1 | |
| del arg908_1 | |
| buf543 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf544 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg181_1, arg1637_1.item(), arg545_1, arg909_1, arg1273_1.item(), buf543, buf544, arg909_1, arg181_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg181_1 | |
| del arg545_1 | |
| del arg909_1 | |
| buf546 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf547 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg182_1, arg1638_1.item(), arg546_1, arg910_1, arg1274_1.item(), buf546, buf547, arg910_1, arg182_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg182_1 | |
| del arg546_1 | |
| del arg910_1 | |
| buf549 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf550 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg183_1, arg1639_1.item(), arg547_1, arg911_1, arg1275_1.item(), buf549, buf550, arg911_1, arg183_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg183_1 | |
| del arg547_1 | |
| del arg911_1 | |
| buf552 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf553 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg184_1, arg1640_1.item(), arg548_1, arg912_1, arg1276_1.item(), buf552, buf553, arg912_1, arg184_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg184_1 | |
| del arg548_1 | |
| del arg912_1 | |
| buf555 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf556 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg185_1, arg1641_1.item(), arg549_1, arg913_1, arg1277_1.item(), buf555, buf556, arg913_1, arg185_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg185_1 | |
| del arg549_1 | |
| del arg913_1 | |
| buf558 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf559 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg186_1, arg1642_1.item(), arg550_1, arg914_1, arg1278_1.item(), buf558, buf559, arg914_1, arg186_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg186_1 | |
| del arg550_1 | |
| del arg914_1 | |
| buf561 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf562 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg187_1, arg1643_1.item(), arg551_1, arg915_1, arg1279_1.item(), buf561, buf562, arg915_1, arg187_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg187_1 | |
| del arg551_1 | |
| del arg915_1 | |
| buf564 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf565 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg188_1, arg1644_1.item(), arg552_1, arg916_1, arg1280_1.item(), buf564, buf565, arg916_1, arg188_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg188_1 | |
| del arg552_1 | |
| del arg916_1 | |
| buf567 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf568 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg189_1, arg1645_1.item(), arg553_1, arg917_1, arg1281_1.item(), buf567, buf568, arg917_1, arg189_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg189_1 | |
| del arg553_1 | |
| del arg917_1 | |
| buf570 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf571 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg190_1, arg1646_1.item(), arg554_1, arg918_1, arg1282_1.item(), buf570, buf571, arg918_1, arg190_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg190_1 | |
| del arg554_1 | |
| del arg918_1 | |
| buf573 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf574 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg191_1, arg1647_1.item(), arg555_1, arg919_1, arg1283_1.item(), buf573, buf574, arg919_1, arg191_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg191_1 | |
| del arg555_1 | |
| del arg919_1 | |
| buf576 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf577 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg192_1, arg1648_1.item(), arg556_1, arg920_1, arg1284_1.item(), buf576, buf577, arg920_1, arg192_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg192_1 | |
| del arg556_1 | |
| del arg920_1 | |
| buf579 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf580 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg193_1, arg1649_1.item(), arg557_1, arg921_1, arg1285_1.item(), buf579, buf580, arg921_1, arg193_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg193_1 | |
| del arg557_1 | |
| del arg921_1 | |
| buf582 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf583 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg194_1, arg1650_1.item(), arg558_1, arg922_1, arg1286_1.item(), buf582, buf583, arg922_1, arg194_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg194_1 | |
| del arg558_1 | |
| del arg922_1 | |
| buf585 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf586 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg195_1, arg1651_1.item(), arg559_1, arg923_1, arg1287_1.item(), buf585, buf586, arg923_1, arg195_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg195_1 | |
| del arg559_1 | |
| del arg923_1 | |
| buf588 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf589 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg196_1, arg1652_1.item(), arg560_1, arg924_1, arg1288_1.item(), buf588, buf589, arg924_1, arg196_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg196_1 | |
| del arg560_1 | |
| del arg924_1 | |
| buf591 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf592 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg197_1, arg1653_1.item(), arg561_1, arg925_1, arg1289_1.item(), buf591, buf592, arg925_1, arg197_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg197_1 | |
| del arg561_1 | |
| del arg925_1 | |
| buf594 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf595 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg198_1, arg1654_1.item(), arg562_1, arg926_1, arg1290_1.item(), buf594, buf595, arg926_1, arg198_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg198_1 | |
| del arg562_1 | |
| del arg926_1 | |
| buf597 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf598 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg199_1, arg1655_1.item(), arg563_1, arg927_1, arg1291_1.item(), buf597, buf598, arg927_1, arg199_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg199_1 | |
| del arg563_1 | |
| del arg927_1 | |
| buf600 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf601 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg200_1, arg1656_1.item(), arg564_1, arg928_1, arg1292_1.item(), buf600, buf601, arg928_1, arg200_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg200_1 | |
| del arg564_1 | |
| del arg928_1 | |
| buf603 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf604 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg201_1, arg1657_1.item(), arg565_1, arg929_1, arg1293_1.item(), buf603, buf604, arg929_1, arg201_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg201_1 | |
| del arg565_1 | |
| del arg929_1 | |
| buf606 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf607 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg202_1, arg1658_1.item(), arg566_1, arg930_1, arg1294_1.item(), buf606, buf607, arg930_1, arg202_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg202_1 | |
| del arg566_1 | |
| del arg930_1 | |
| buf609 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf610 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg203_1, arg1659_1.item(), arg567_1, arg931_1, arg1295_1.item(), buf609, buf610, arg931_1, arg203_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg203_1 | |
| del arg567_1 | |
| del arg931_1 | |
| buf612 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf613 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg204_1, arg1660_1.item(), arg568_1, arg932_1, arg1296_1.item(), buf612, buf613, arg932_1, arg204_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg204_1 | |
| del arg568_1 | |
| del arg932_1 | |
| buf615 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf616 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg205_1, arg1661_1.item(), arg569_1, arg933_1, arg1297_1.item(), buf615, buf616, arg933_1, arg205_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg205_1 | |
| del arg569_1 | |
| del arg933_1 | |
| buf618 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf619 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg206_1, arg1662_1.item(), arg570_1, arg934_1, arg1298_1.item(), buf618, buf619, arg934_1, arg206_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg206_1 | |
| del arg570_1 | |
| del arg934_1 | |
| buf621 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf622 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg207_1, arg1663_1.item(), arg571_1, arg935_1, arg1299_1.item(), buf621, buf622, arg935_1, arg207_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg207_1 | |
| del arg571_1 | |
| del arg935_1 | |
| buf624 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf625 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg208_1, arg1664_1.item(), arg572_1, arg936_1, arg1300_1.item(), buf624, buf625, arg936_1, arg208_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg208_1 | |
| del arg572_1 | |
| del arg936_1 | |
| buf627 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf628 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg209_1, arg1665_1.item(), arg573_1, arg937_1, arg1301_1.item(), buf627, buf628, arg937_1, arg209_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg209_1 | |
| del arg573_1 | |
| del arg937_1 | |
| buf630 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf631 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg210_1, arg1666_1.item(), arg574_1, arg938_1, arg1302_1.item(), buf630, buf631, arg938_1, arg210_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg210_1 | |
| del arg574_1 | |
| del arg938_1 | |
| buf633 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf634 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg211_1, arg1667_1.item(), arg575_1, arg939_1, arg1303_1.item(), buf633, buf634, arg939_1, arg211_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg211_1 | |
| del arg575_1 | |
| del arg939_1 | |
| buf636 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf637 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg212_1, arg1668_1.item(), arg576_1, arg940_1, arg1304_1.item(), buf636, buf637, arg940_1, arg212_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg212_1 | |
| del arg576_1 | |
| del arg940_1 | |
| buf639 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf640 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg213_1, arg1669_1.item(), arg577_1, arg941_1, arg1305_1.item(), buf639, buf640, arg941_1, arg213_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg213_1 | |
| del arg577_1 | |
| del arg941_1 | |
| buf642 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf643 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg214_1, arg1670_1.item(), arg578_1, arg942_1, arg1306_1.item(), buf642, buf643, arg942_1, arg214_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg214_1 | |
| del arg578_1 | |
| del arg942_1 | |
| buf645 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf646 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg215_1, arg1671_1.item(), arg579_1, arg943_1, arg1307_1.item(), buf645, buf646, arg943_1, arg215_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg215_1 | |
| del arg579_1 | |
| del arg943_1 | |
| buf648 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf649 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg216_1, arg1672_1.item(), arg580_1, arg944_1, arg1308_1.item(), buf648, buf649, arg944_1, arg216_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg216_1 | |
| del arg580_1 | |
| del arg944_1 | |
| buf651 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf652 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg217_1, arg1673_1.item(), arg581_1, arg945_1, arg1309_1.item(), buf651, buf652, arg945_1, arg217_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg217_1 | |
| del arg581_1 | |
| del arg945_1 | |
| buf654 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf655 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg218_1, arg1674_1.item(), arg582_1, arg946_1, arg1310_1.item(), buf654, buf655, arg946_1, arg218_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg218_1 | |
| del arg582_1 | |
| del arg946_1 | |
| buf657 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf658 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg219_1, arg1675_1.item(), arg583_1, arg947_1, arg1311_1.item(), buf657, buf658, arg947_1, arg219_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg219_1 | |
| del arg583_1 | |
| del arg947_1 | |
| buf660 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf661 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg220_1, arg1676_1.item(), arg584_1, arg948_1, arg1312_1.item(), buf660, buf661, arg948_1, arg220_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg220_1 | |
| del arg584_1 | |
| del arg948_1 | |
| buf663 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf664 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg221_1, arg1677_1.item(), arg585_1, arg949_1, arg1313_1.item(), buf663, buf664, arg949_1, arg221_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg221_1 | |
| del arg585_1 | |
| del arg949_1 | |
| buf666 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf667 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg222_1, arg1678_1.item(), arg586_1, arg950_1, arg1314_1.item(), buf666, buf667, arg950_1, arg222_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg222_1 | |
| del arg586_1 | |
| del arg950_1 | |
| buf669 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf670 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg223_1, arg1679_1.item(), arg587_1, arg951_1, arg1315_1.item(), buf669, buf670, arg951_1, arg223_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg223_1 | |
| del arg587_1 | |
| del arg951_1 | |
| buf672 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf673 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg224_1, arg1680_1.item(), arg588_1, arg952_1, arg1316_1.item(), buf672, buf673, arg952_1, arg224_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg224_1 | |
| del arg588_1 | |
| del arg952_1 | |
| buf675 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf676 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg225_1, arg1681_1.item(), arg589_1, arg953_1, arg1317_1.item(), buf675, buf676, arg953_1, arg225_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg225_1 | |
| del arg589_1 | |
| del arg953_1 | |
| buf678 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf679 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg226_1, arg1682_1.item(), arg590_1, arg954_1, arg1318_1.item(), buf678, buf679, arg954_1, arg226_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg226_1 | |
| del arg590_1 | |
| del arg954_1 | |
| buf681 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf682 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg227_1, arg1683_1.item(), arg591_1, arg955_1, arg1319_1.item(), buf681, buf682, arg955_1, arg227_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg227_1 | |
| del arg591_1 | |
| del arg955_1 | |
| buf684 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf685 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg228_1, arg1684_1.item(), arg592_1, arg956_1, arg1320_1.item(), buf684, buf685, arg956_1, arg228_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg228_1 | |
| del arg592_1 | |
| del arg956_1 | |
| buf687 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf688 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg229_1, arg1685_1.item(), arg593_1, arg957_1, arg1321_1.item(), buf687, buf688, arg957_1, arg229_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg229_1 | |
| del arg593_1 | |
| del arg957_1 | |
| buf690 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf691 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg230_1, arg1686_1.item(), arg594_1, arg958_1, arg1322_1.item(), buf690, buf691, arg958_1, arg230_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg230_1 | |
| del arg594_1 | |
| del arg958_1 | |
| buf693 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf694 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg231_1, arg1687_1.item(), arg595_1, arg959_1, arg1323_1.item(), buf693, buf694, arg959_1, arg231_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg231_1 | |
| del arg595_1 | |
| del arg959_1 | |
| buf696 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf697 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg232_1, arg1688_1.item(), arg596_1, arg960_1, arg1324_1.item(), buf696, buf697, arg960_1, arg232_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg232_1 | |
| del arg596_1 | |
| del arg960_1 | |
| buf699 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf700 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg233_1, arg1689_1.item(), arg597_1, arg961_1, arg1325_1.item(), buf699, buf700, arg961_1, arg233_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg233_1 | |
| del arg597_1 | |
| del arg961_1 | |
| buf702 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf703 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg234_1, arg1690_1.item(), arg598_1, arg962_1, arg1326_1.item(), buf702, buf703, arg962_1, arg234_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg234_1 | |
| del arg598_1 | |
| del arg962_1 | |
| buf705 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf706 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg235_1, arg1691_1.item(), arg599_1, arg963_1, arg1327_1.item(), buf705, buf706, arg963_1, arg235_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg235_1 | |
| del arg599_1 | |
| del arg963_1 | |
| buf708 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf709 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg236_1, arg1692_1.item(), arg600_1, arg964_1, arg1328_1.item(), buf708, buf709, arg964_1, arg236_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg236_1 | |
| del arg600_1 | |
| del arg964_1 | |
| buf711 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf712 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg237_1, arg1693_1.item(), arg601_1, arg965_1, arg1329_1.item(), buf711, buf712, arg965_1, arg237_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg237_1 | |
| del arg601_1 | |
| del arg965_1 | |
| buf714 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf715 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg238_1, arg1694_1.item(), arg602_1, arg966_1, arg1330_1.item(), buf714, buf715, arg966_1, arg238_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg238_1 | |
| del arg602_1 | |
| del arg966_1 | |
| buf717 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf718 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg239_1, arg1695_1.item(), arg603_1, arg967_1, arg1331_1.item(), buf717, buf718, arg967_1, arg239_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg239_1 | |
| del arg603_1 | |
| del arg967_1 | |
| buf720 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf721 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg240_1, arg1696_1.item(), arg604_1, arg968_1, arg1332_1.item(), buf720, buf721, arg968_1, arg240_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg240_1 | |
| del arg604_1 | |
| del arg968_1 | |
| buf723 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf724 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg241_1, arg1697_1.item(), arg605_1, arg969_1, arg1333_1.item(), buf723, buf724, arg969_1, arg241_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg241_1 | |
| del arg605_1 | |
| del arg969_1 | |
| buf726 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf727 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg242_1, arg1698_1.item(), arg606_1, arg970_1, arg1334_1.item(), buf726, buf727, arg970_1, arg242_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg242_1 | |
| del arg606_1 | |
| del arg970_1 | |
| buf729 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf730 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg243_1, arg1699_1.item(), arg607_1, arg971_1, arg1335_1.item(), buf729, buf730, arg971_1, arg243_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg243_1 | |
| del arg607_1 | |
| del arg971_1 | |
| buf732 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf733 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg244_1, arg1700_1.item(), arg608_1, arg972_1, arg1336_1.item(), buf732, buf733, arg972_1, arg244_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg244_1 | |
| del arg608_1 | |
| del arg972_1 | |
| buf735 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf736 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg245_1, arg1701_1.item(), arg609_1, arg973_1, arg1337_1.item(), buf735, buf736, arg973_1, arg245_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg245_1 | |
| del arg609_1 | |
| del arg973_1 | |
| buf738 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf739 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg246_1, arg1702_1.item(), arg610_1, arg974_1, arg1338_1.item(), buf738, buf739, arg974_1, arg246_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg246_1 | |
| del arg610_1 | |
| del arg974_1 | |
| buf741 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf742 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg247_1, arg1703_1.item(), arg611_1, arg975_1, arg1339_1.item(), buf741, buf742, arg975_1, arg247_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg247_1 | |
| del arg611_1 | |
| del arg975_1 | |
| buf744 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf745 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg248_1, arg1704_1.item(), arg612_1, arg976_1, arg1340_1.item(), buf744, buf745, arg976_1, arg248_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg248_1 | |
| del arg612_1 | |
| del arg976_1 | |
| buf747 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf748 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg249_1, arg1705_1.item(), arg613_1, arg977_1, arg1341_1.item(), buf747, buf748, arg977_1, arg249_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg249_1 | |
| del arg613_1 | |
| del arg977_1 | |
| buf750 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf751 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg250_1, arg1706_1.item(), arg614_1, arg978_1, arg1342_1.item(), buf750, buf751, arg978_1, arg250_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg250_1 | |
| del arg614_1 | |
| del arg978_1 | |
| buf753 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf754 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg251_1, arg1707_1.item(), arg615_1, arg979_1, arg1343_1.item(), buf753, buf754, arg979_1, arg251_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg251_1 | |
| del arg615_1 | |
| del arg979_1 | |
| buf756 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf757 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg252_1, arg1708_1.item(), arg616_1, arg980_1, arg1344_1.item(), buf756, buf757, arg980_1, arg252_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg252_1 | |
| del arg616_1 | |
| del arg980_1 | |
| buf759 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf760 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg253_1, arg1709_1.item(), arg617_1, arg981_1, arg1345_1.item(), buf759, buf760, arg981_1, arg253_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg253_1 | |
| del arg617_1 | |
| del arg981_1 | |
| buf762 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf763 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg254_1, arg1710_1.item(), arg618_1, arg982_1, arg1346_1.item(), buf762, buf763, arg982_1, arg254_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg254_1 | |
| del arg618_1 | |
| del arg982_1 | |
| buf765 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf766 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg255_1, arg1711_1.item(), arg619_1, arg983_1, arg1347_1.item(), buf765, buf766, arg983_1, arg255_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg255_1 | |
| del arg619_1 | |
| del arg983_1 | |
| buf768 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf769 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg256_1, arg1712_1.item(), arg620_1, arg984_1, arg1348_1.item(), buf768, buf769, arg984_1, arg256_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg256_1 | |
| del arg620_1 | |
| del arg984_1 | |
| buf771 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf772 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg257_1, arg1713_1.item(), arg621_1, arg985_1, arg1349_1.item(), buf771, buf772, arg985_1, arg257_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg257_1 | |
| del arg621_1 | |
| del arg985_1 | |
| buf774 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf775 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg258_1, arg1714_1.item(), arg622_1, arg986_1, arg1350_1.item(), buf774, buf775, arg986_1, arg258_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg258_1 | |
| del arg622_1 | |
| del arg986_1 | |
| buf777 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf778 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg259_1, arg1715_1.item(), arg623_1, arg987_1, arg1351_1.item(), buf777, buf778, arg987_1, arg259_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg259_1 | |
| del arg623_1 | |
| del arg987_1 | |
| buf780 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf781 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg260_1, arg1716_1.item(), arg624_1, arg988_1, arg1352_1.item(), buf780, buf781, arg988_1, arg260_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg260_1 | |
| del arg624_1 | |
| del arg988_1 | |
| buf783 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf784 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg261_1, arg1717_1.item(), arg625_1, arg989_1, arg1353_1.item(), buf783, buf784, arg989_1, arg261_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg261_1 | |
| del arg625_1 | |
| del arg989_1 | |
| buf786 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf787 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg262_1, arg1718_1.item(), arg626_1, arg990_1, arg1354_1.item(), buf786, buf787, arg990_1, arg262_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg262_1 | |
| del arg626_1 | |
| del arg990_1 | |
| buf789 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf790 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg263_1, arg1719_1.item(), arg627_1, arg991_1, arg1355_1.item(), buf789, buf790, arg991_1, arg263_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg263_1 | |
| del arg627_1 | |
| del arg991_1 | |
| buf792 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf793 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg264_1, arg1720_1.item(), arg628_1, arg992_1, arg1356_1.item(), buf792, buf793, arg992_1, arg264_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg264_1 | |
| del arg628_1 | |
| del arg992_1 | |
| buf795 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf796 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg265_1, arg1721_1.item(), arg629_1, arg993_1, arg1357_1.item(), buf795, buf796, arg993_1, arg265_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg265_1 | |
| del arg629_1 | |
| del arg993_1 | |
| buf798 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf799 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg266_1, arg1722_1.item(), arg630_1, arg994_1, arg1358_1.item(), buf798, buf799, arg994_1, arg266_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg266_1 | |
| del arg630_1 | |
| del arg994_1 | |
| buf801 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf802 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg267_1, arg1723_1.item(), arg631_1, arg995_1, arg1359_1.item(), buf801, buf802, arg995_1, arg267_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg267_1 | |
| del arg631_1 | |
| del arg995_1 | |
| buf804 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf805 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg268_1, arg1724_1.item(), arg632_1, arg996_1, arg1360_1.item(), buf804, buf805, arg996_1, arg268_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg268_1 | |
| del arg632_1 | |
| del arg996_1 | |
| buf807 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf808 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg269_1, arg1725_1.item(), arg633_1, arg997_1, arg1361_1.item(), buf807, buf808, arg997_1, arg269_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg269_1 | |
| del arg633_1 | |
| del arg997_1 | |
| buf810 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf811 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg270_1, arg1726_1.item(), arg634_1, arg998_1, arg1362_1.item(), buf810, buf811, arg998_1, arg270_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg270_1 | |
| del arg634_1 | |
| del arg998_1 | |
| buf813 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf814 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg271_1, arg1727_1.item(), arg635_1, arg999_1, arg1363_1.item(), buf813, buf814, arg999_1, arg271_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg271_1 | |
| del arg635_1 | |
| del arg999_1 | |
| buf816 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf817 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg272_1, arg1728_1.item(), arg636_1, arg1000_1, arg1364_1.item(), buf816, buf817, arg1000_1, arg272_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1000_1 | |
| del arg272_1 | |
| del arg636_1 | |
| buf819 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf820 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg273_1, arg1729_1.item(), arg637_1, arg1001_1, arg1365_1.item(), buf819, buf820, arg1001_1, arg273_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1001_1 | |
| del arg273_1 | |
| del arg637_1 | |
| buf822 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf823 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg274_1, arg1730_1.item(), arg638_1, arg1002_1, arg1366_1.item(), buf822, buf823, arg1002_1, arg274_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1002_1 | |
| del arg274_1 | |
| del arg638_1 | |
| buf825 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf826 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg275_1, arg1731_1.item(), arg639_1, arg1003_1, arg1367_1.item(), buf825, buf826, arg1003_1, arg275_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1003_1 | |
| del arg275_1 | |
| del arg639_1 | |
| buf828 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf829 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg276_1, arg1732_1.item(), arg640_1, arg1004_1, arg1368_1.item(), buf828, buf829, arg1004_1, arg276_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1004_1 | |
| del arg276_1 | |
| del arg640_1 | |
| buf831 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf832 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg277_1, arg1733_1.item(), arg641_1, arg1005_1, arg1369_1.item(), buf831, buf832, arg1005_1, arg277_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1005_1 | |
| del arg277_1 | |
| del arg641_1 | |
| buf834 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf835 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg278_1, arg1734_1.item(), arg642_1, arg1006_1, arg1370_1.item(), buf834, buf835, arg1006_1, arg278_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1006_1 | |
| del arg278_1 | |
| del arg642_1 | |
| buf837 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf838 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg279_1, arg1735_1.item(), arg643_1, arg1007_1, arg1371_1.item(), buf837, buf838, arg1007_1, arg279_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1007_1 | |
| del arg279_1 | |
| del arg643_1 | |
| buf840 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf841 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg280_1, arg1736_1.item(), arg644_1, arg1008_1, arg1372_1.item(), buf840, buf841, arg1008_1, arg280_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1008_1 | |
| del arg280_1 | |
| del arg644_1 | |
| buf843 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf844 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg281_1, arg1737_1.item(), arg645_1, arg1009_1, arg1373_1.item(), buf843, buf844, arg1009_1, arg281_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1009_1 | |
| del arg281_1 | |
| del arg645_1 | |
| buf846 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf847 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg282_1, arg1738_1.item(), arg646_1, arg1010_1, arg1374_1.item(), buf846, buf847, arg1010_1, arg282_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1010_1 | |
| del arg282_1 | |
| del arg646_1 | |
| buf849 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf850 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg283_1, arg1739_1.item(), arg647_1, arg1011_1, arg1375_1.item(), buf849, buf850, arg1011_1, arg283_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1011_1 | |
| del arg283_1 | |
| del arg647_1 | |
| buf852 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf853 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg284_1, arg1740_1.item(), arg648_1, arg1012_1, arg1376_1.item(), buf852, buf853, arg1012_1, arg284_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1012_1 | |
| del arg284_1 | |
| del arg648_1 | |
| buf855 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf856 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg285_1, arg1741_1.item(), arg649_1, arg1013_1, arg1377_1.item(), buf855, buf856, arg1013_1, arg285_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1013_1 | |
| del arg285_1 | |
| del arg649_1 | |
| buf858 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf859 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg286_1, arg1742_1.item(), arg650_1, arg1014_1, arg1378_1.item(), buf858, buf859, arg1014_1, arg286_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1014_1 | |
| del arg286_1 | |
| del arg650_1 | |
| buf861 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf862 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg287_1, arg1743_1.item(), arg651_1, arg1015_1, arg1379_1.item(), buf861, buf862, arg1015_1, arg287_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1015_1 | |
| del arg287_1 | |
| del arg651_1 | |
| buf864 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf865 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg288_1, arg1744_1.item(), arg652_1, arg1016_1, arg1380_1.item(), buf864, buf865, arg1016_1, arg288_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1016_1 | |
| del arg288_1 | |
| del arg652_1 | |
| buf867 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf868 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg289_1, arg1745_1.item(), arg653_1, arg1017_1, arg1381_1.item(), buf867, buf868, arg1017_1, arg289_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1017_1 | |
| del arg289_1 | |
| del arg653_1 | |
| buf870 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf871 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg290_1, arg1746_1.item(), arg654_1, arg1018_1, arg1382_1.item(), buf870, buf871, arg1018_1, arg290_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1018_1 | |
| del arg290_1 | |
| del arg654_1 | |
| buf873 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf874 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg291_1, arg1747_1.item(), arg655_1, arg1019_1, arg1383_1.item(), buf873, buf874, arg1019_1, arg291_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1019_1 | |
| del arg291_1 | |
| del arg655_1 | |
| buf876 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf877 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg292_1, arg1748_1.item(), arg656_1, arg1020_1, arg1384_1.item(), buf876, buf877, arg1020_1, arg292_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1020_1 | |
| del arg292_1 | |
| del arg656_1 | |
| buf879 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf880 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg293_1, arg1749_1.item(), arg657_1, arg1021_1, arg1385_1.item(), buf879, buf880, arg1021_1, arg293_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1021_1 | |
| del arg293_1 | |
| del arg657_1 | |
| buf882 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf883 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg294_1, arg1750_1.item(), arg658_1, arg1022_1, arg1386_1.item(), buf882, buf883, arg1022_1, arg294_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1022_1 | |
| del arg294_1 | |
| del arg658_1 | |
| buf885 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf886 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg295_1, arg1751_1.item(), arg659_1, arg1023_1, arg1387_1.item(), buf885, buf886, arg1023_1, arg295_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1023_1 | |
| del arg295_1 | |
| del arg659_1 | |
| buf888 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf889 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg296_1, arg1752_1.item(), arg660_1, arg1024_1, arg1388_1.item(), buf888, buf889, arg1024_1, arg296_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1024_1 | |
| del arg296_1 | |
| del arg660_1 | |
| buf891 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf892 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg297_1, arg1753_1.item(), arg661_1, arg1025_1, arg1389_1.item(), buf891, buf892, arg1025_1, arg297_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1025_1 | |
| del arg297_1 | |
| del arg661_1 | |
| buf894 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf895 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg298_1, arg1754_1.item(), arg662_1, arg1026_1, arg1390_1.item(), buf894, buf895, arg1026_1, arg298_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1026_1 | |
| del arg298_1 | |
| del arg662_1 | |
| buf897 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf898 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg299_1, arg1755_1.item(), arg663_1, arg1027_1, arg1391_1.item(), buf897, buf898, arg1027_1, arg299_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1027_1 | |
| del arg299_1 | |
| del arg663_1 | |
| buf900 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf901 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg300_1, arg1756_1.item(), arg664_1, arg1028_1, arg1392_1.item(), buf900, buf901, arg1028_1, arg300_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1028_1 | |
| del arg300_1 | |
| del arg664_1 | |
| buf903 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf904 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg301_1, arg1757_1.item(), arg665_1, arg1029_1, arg1393_1.item(), buf903, buf904, arg1029_1, arg301_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1029_1 | |
| del arg301_1 | |
| del arg665_1 | |
| buf906 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf907 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg302_1, arg1758_1.item(), arg666_1, arg1030_1, arg1394_1.item(), buf906, buf907, arg1030_1, arg302_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1030_1 | |
| del arg302_1 | |
| del arg666_1 | |
| buf909 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf910 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg303_1, arg1759_1.item(), arg667_1, arg1031_1, arg1395_1.item(), buf909, buf910, arg1031_1, arg303_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1031_1 | |
| del arg303_1 | |
| del arg667_1 | |
| buf912 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf913 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg304_1, arg1760_1.item(), arg668_1, arg1032_1, arg1396_1.item(), buf912, buf913, arg1032_1, arg304_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1032_1 | |
| del arg304_1 | |
| del arg668_1 | |
| buf915 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf916 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg305_1, arg1761_1.item(), arg669_1, arg1033_1, arg1397_1.item(), buf915, buf916, arg1033_1, arg305_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1033_1 | |
| del arg305_1 | |
| del arg669_1 | |
| buf918 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf919 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg306_1, arg1762_1.item(), arg670_1, arg1034_1, arg1398_1.item(), buf918, buf919, arg1034_1, arg306_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1034_1 | |
| del arg306_1 | |
| del arg670_1 | |
| buf921 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf922 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg307_1, arg1763_1.item(), arg671_1, arg1035_1, arg1399_1.item(), buf921, buf922, arg1035_1, arg307_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1035_1 | |
| del arg307_1 | |
| del arg671_1 | |
| buf924 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf925 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg308_1, arg1764_1.item(), arg672_1, arg1036_1, arg1400_1.item(), buf924, buf925, arg1036_1, arg308_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1036_1 | |
| del arg308_1 | |
| del arg672_1 | |
| buf927 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf928 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg309_1, arg1765_1.item(), arg673_1, arg1037_1, arg1401_1.item(), buf927, buf928, arg1037_1, arg309_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1037_1 | |
| del arg309_1 | |
| del arg673_1 | |
| buf930 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf931 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg310_1, arg1766_1.item(), arg674_1, arg1038_1, arg1402_1.item(), buf930, buf931, arg1038_1, arg310_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1038_1 | |
| del arg310_1 | |
| del arg674_1 | |
| buf933 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf934 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg311_1, arg1767_1.item(), arg675_1, arg1039_1, arg1403_1.item(), buf933, buf934, arg1039_1, arg311_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1039_1 | |
| del arg311_1 | |
| del arg675_1 | |
| buf936 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf937 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg312_1, arg1768_1.item(), arg676_1, arg1040_1, arg1404_1.item(), buf936, buf937, arg1040_1, arg312_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1040_1 | |
| del arg312_1 | |
| del arg676_1 | |
| buf939 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf940 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg313_1, arg1769_1.item(), arg677_1, arg1041_1, arg1405_1.item(), buf939, buf940, arg1041_1, arg313_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1041_1 | |
| del arg313_1 | |
| del arg677_1 | |
| buf942 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf943 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg314_1, arg1770_1.item(), arg678_1, arg1042_1, arg1406_1.item(), buf942, buf943, arg1042_1, arg314_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1042_1 | |
| del arg314_1 | |
| del arg678_1 | |
| buf945 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf946 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg315_1, arg1771_1.item(), arg679_1, arg1043_1, arg1407_1.item(), buf945, buf946, arg1043_1, arg315_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1043_1 | |
| del arg315_1 | |
| del arg679_1 | |
| buf948 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf949 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg316_1, arg1772_1.item(), arg680_1, arg1044_1, arg1408_1.item(), buf948, buf949, arg1044_1, arg316_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1044_1 | |
| del arg316_1 | |
| del arg680_1 | |
| buf951 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf952 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg317_1, arg1773_1.item(), arg681_1, arg1045_1, arg1409_1.item(), buf951, buf952, arg1045_1, arg317_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1045_1 | |
| del arg317_1 | |
| del arg681_1 | |
| buf954 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf955 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg318_1, arg1774_1.item(), arg682_1, arg1046_1, arg1410_1.item(), buf954, buf955, arg1046_1, arg318_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1046_1 | |
| del arg318_1 | |
| del arg682_1 | |
| buf957 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf958 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg319_1, arg1775_1.item(), arg683_1, arg1047_1, arg1411_1.item(), buf957, buf958, arg1047_1, arg319_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1047_1 | |
| del arg319_1 | |
| del arg683_1 | |
| buf960 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf961 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg320_1, arg1776_1.item(), arg684_1, arg1048_1, arg1412_1.item(), buf960, buf961, arg1048_1, arg320_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1048_1 | |
| del arg320_1 | |
| del arg684_1 | |
| buf963 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf964 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg321_1, arg1777_1.item(), arg685_1, arg1049_1, arg1413_1.item(), buf963, buf964, arg1049_1, arg321_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1049_1 | |
| del arg321_1 | |
| del arg685_1 | |
| buf966 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf967 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg322_1, arg1778_1.item(), arg686_1, arg1050_1, arg1414_1.item(), buf966, buf967, arg1050_1, arg322_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1050_1 | |
| del arg322_1 | |
| del arg686_1 | |
| buf969 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf970 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg323_1, arg1779_1.item(), arg687_1, arg1051_1, arg1415_1.item(), buf969, buf970, arg1051_1, arg323_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1051_1 | |
| del arg323_1 | |
| del arg687_1 | |
| buf972 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf973 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg324_1, arg1780_1.item(), arg688_1, arg1052_1, arg1416_1.item(), buf972, buf973, arg1052_1, arg324_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1052_1 | |
| del arg324_1 | |
| del arg688_1 | |
| buf975 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf976 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg325_1, arg1781_1.item(), arg689_1, arg1053_1, arg1417_1.item(), buf975, buf976, arg1053_1, arg325_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1053_1 | |
| del arg325_1 | |
| del arg689_1 | |
| buf978 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf979 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg326_1, arg1782_1.item(), arg690_1, arg1054_1, arg1418_1.item(), buf978, buf979, arg1054_1, arg326_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1054_1 | |
| del arg326_1 | |
| del arg690_1 | |
| buf981 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf982 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg327_1, arg1783_1.item(), arg691_1, arg1055_1, arg1419_1.item(), buf981, buf982, arg1055_1, arg327_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1055_1 | |
| del arg327_1 | |
| del arg691_1 | |
| buf984 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf985 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg328_1, arg1784_1.item(), arg692_1, arg1056_1, arg1420_1.item(), buf984, buf985, arg1056_1, arg328_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1056_1 | |
| del arg328_1 | |
| del arg692_1 | |
| buf987 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf988 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg329_1, arg1785_1.item(), arg693_1, arg1057_1, arg1421_1.item(), buf987, buf988, arg1057_1, arg329_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1057_1 | |
| del arg329_1 | |
| del arg693_1 | |
| buf990 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf991 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg330_1, arg1786_1.item(), arg694_1, arg1058_1, arg1422_1.item(), buf990, buf991, arg1058_1, arg330_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1058_1 | |
| del arg330_1 | |
| del arg694_1 | |
| buf993 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf994 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg331_1, arg1787_1.item(), arg695_1, arg1059_1, arg1423_1.item(), buf993, buf994, arg1059_1, arg331_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1059_1 | |
| del arg331_1 | |
| del arg695_1 | |
| buf996 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf997 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg332_1, arg1788_1.item(), arg696_1, arg1060_1, arg1424_1.item(), buf996, buf997, arg1060_1, arg332_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1060_1 | |
| del arg332_1 | |
| del arg696_1 | |
| buf999 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1000 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg333_1, arg1789_1.item(), arg697_1, arg1061_1, arg1425_1.item(), buf999, buf1000, arg1061_1, arg333_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1061_1 | |
| del arg333_1 | |
| del arg697_1 | |
| buf1002 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1003 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg334_1, arg1790_1.item(), arg698_1, arg1062_1, arg1426_1.item(), buf1002, buf1003, arg1062_1, arg334_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1062_1 | |
| del arg334_1 | |
| del arg698_1 | |
| buf1005 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1006 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg335_1, arg1791_1.item(), arg699_1, arg1063_1, arg1427_1.item(), buf1005, buf1006, arg1063_1, arg335_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1063_1 | |
| del arg335_1 | |
| del arg699_1 | |
| buf1008 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1009 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg336_1, arg1792_1.item(), arg700_1, arg1064_1, arg1428_1.item(), buf1008, buf1009, arg1064_1, arg336_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1064_1 | |
| del arg336_1 | |
| del arg700_1 | |
| buf1011 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1012 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg337_1, arg1793_1.item(), arg701_1, arg1065_1, arg1429_1.item(), buf1011, buf1012, arg1065_1, arg337_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1065_1 | |
| del arg337_1 | |
| del arg701_1 | |
| buf1014 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1015 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg338_1, arg1794_1.item(), arg702_1, arg1066_1, arg1430_1.item(), buf1014, buf1015, arg1066_1, arg338_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1066_1 | |
| del arg338_1 | |
| del arg702_1 | |
| buf1017 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1018 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg339_1, arg1795_1.item(), arg703_1, arg1067_1, arg1431_1.item(), buf1017, buf1018, arg1067_1, arg339_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1067_1 | |
| del arg339_1 | |
| del arg703_1 | |
| buf1020 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1021 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg340_1, arg1796_1.item(), arg704_1, arg1068_1, arg1432_1.item(), buf1020, buf1021, arg1068_1, arg340_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1068_1 | |
| del arg340_1 | |
| del arg704_1 | |
| buf1023 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1024 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg341_1, arg1797_1.item(), arg705_1, arg1069_1, arg1433_1.item(), buf1023, buf1024, arg1069_1, arg341_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1069_1 | |
| del arg341_1 | |
| del arg705_1 | |
| buf1026 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1027 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg342_1, arg1798_1.item(), arg706_1, arg1070_1, arg1434_1.item(), buf1026, buf1027, arg1070_1, arg342_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1070_1 | |
| del arg342_1 | |
| del arg706_1 | |
| buf1029 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1030 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg343_1, arg1799_1.item(), arg707_1, arg1071_1, arg1435_1.item(), buf1029, buf1030, arg1071_1, arg343_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1071_1 | |
| del arg343_1 | |
| del arg707_1 | |
| buf1032 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1033 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg344_1, arg1800_1.item(), arg708_1, arg1072_1, arg1436_1.item(), buf1032, buf1033, arg1072_1, arg344_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1072_1 | |
| del arg344_1 | |
| del arg708_1 | |
| buf1035 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1036 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg345_1, arg1801_1.item(), arg709_1, arg1073_1, arg1437_1.item(), buf1035, buf1036, arg1073_1, arg345_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1073_1 | |
| del arg345_1 | |
| del arg709_1 | |
| buf1038 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1039 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg346_1, arg1802_1.item(), arg710_1, arg1074_1, arg1438_1.item(), buf1038, buf1039, arg1074_1, arg346_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1074_1 | |
| del arg346_1 | |
| del arg710_1 | |
| buf1041 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1042 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg347_1, arg1803_1.item(), arg711_1, arg1075_1, arg1439_1.item(), buf1041, buf1042, arg1075_1, arg347_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1075_1 | |
| del arg347_1 | |
| del arg711_1 | |
| buf1044 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1045 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg348_1, arg1804_1.item(), arg712_1, arg1076_1, arg1440_1.item(), buf1044, buf1045, arg1076_1, arg348_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1076_1 | |
| del arg348_1 | |
| del arg712_1 | |
| buf1047 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1048 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg349_1, arg1805_1.item(), arg713_1, arg1077_1, arg1441_1.item(), buf1047, buf1048, arg1077_1, arg349_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1077_1 | |
| del arg349_1 | |
| del arg713_1 | |
| buf1050 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1051 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg350_1, arg1806_1.item(), arg714_1, arg1078_1, arg1442_1.item(), buf1050, buf1051, arg1078_1, arg350_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1078_1 | |
| del arg350_1 | |
| del arg714_1 | |
| buf1053 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1054 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg351_1, arg1807_1.item(), arg715_1, arg1079_1, arg1443_1.item(), buf1053, buf1054, arg1079_1, arg351_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1079_1 | |
| del arg351_1 | |
| del arg715_1 | |
| buf1056 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1057 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg352_1, arg1808_1.item(), arg716_1, arg1080_1, arg1444_1.item(), buf1056, buf1057, arg1080_1, arg352_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1080_1 | |
| del arg352_1 | |
| del arg716_1 | |
| buf1059 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1060 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg353_1, arg1809_1.item(), arg717_1, arg1081_1, arg1445_1.item(), buf1059, buf1060, arg1081_1, arg353_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1081_1 | |
| del arg353_1 | |
| del arg717_1 | |
| buf1062 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1063 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg354_1, arg1810_1.item(), arg718_1, arg1082_1, arg1446_1.item(), buf1062, buf1063, arg1082_1, arg354_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1082_1 | |
| del arg354_1 | |
| del arg718_1 | |
| buf1065 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1066 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg355_1, arg1811_1.item(), arg719_1, arg1083_1, arg1447_1.item(), buf1065, buf1066, arg1083_1, arg355_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1083_1 | |
| del arg355_1 | |
| del arg719_1 | |
| buf1068 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1069 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg356_1, arg1812_1.item(), arg720_1, arg1084_1, arg1448_1.item(), buf1068, buf1069, arg1084_1, arg356_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1084_1 | |
| del arg356_1 | |
| del arg720_1 | |
| buf1071 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1072 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg357_1, arg1813_1.item(), arg721_1, arg1085_1, arg1449_1.item(), buf1071, buf1072, arg1085_1, arg357_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1085_1 | |
| del arg357_1 | |
| del arg721_1 | |
| buf1074 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1075 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg358_1, arg1814_1.item(), arg722_1, arg1086_1, arg1450_1.item(), buf1074, buf1075, arg1086_1, arg358_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1086_1 | |
| del arg358_1 | |
| del arg722_1 | |
| buf1077 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1078 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg359_1, arg1815_1.item(), arg723_1, arg1087_1, arg1451_1.item(), buf1077, buf1078, arg1087_1, arg359_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1087_1 | |
| del arg359_1 | |
| del arg723_1 | |
| buf1080 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1081 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg360_1, arg1816_1.item(), arg724_1, arg1088_1, arg1452_1.item(), buf1080, buf1081, arg1088_1, arg360_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1088_1 | |
| del arg360_1 | |
| del arg724_1 | |
| buf1083 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1084 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg361_1, arg1817_1.item(), arg725_1, arg1089_1, arg1453_1.item(), buf1083, buf1084, arg1089_1, arg361_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1089_1 | |
| del arg361_1 | |
| del arg725_1 | |
| buf1086 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1087 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg362_1, arg1818_1.item(), arg726_1, arg1090_1, arg1454_1.item(), buf1086, buf1087, arg1090_1, arg362_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1090_1 | |
| del arg362_1 | |
| del arg726_1 | |
| buf1089 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| buf1090 = empty_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda', dtype=torch.float32) | |
| triton_fused_add_mul_neg_rsub_sub_0.run(arg363_1, arg1819_1.item(), arg727_1, arg1091_1, arg1455_1.item(), buf1089, buf1090, arg1091_1, arg363_1, 9408, grid=grid(9408), stream=stream0) | |
| del arg1091_1 | |
| del arg363_1 | |
| del arg727_1 | |
| kernel_cpp_1(c_void_p(arg1820_1.data_ptr()), c_void_p(arg1821_1.data_ptr()), c_void_p(arg1822_1.data_ptr()), c_void_p(arg1823_1.data_ptr()), c_void_p(arg1824_1.data_ptr()), c_void_p(arg1825_1.data_ptr()), c_void_p(arg1826_1.data_ptr()), c_void_p(arg1827_1.data_ptr()), c_void_p(arg1828_1.data_ptr()), c_void_p(arg1829_1.data_ptr()), c_void_p(arg1830_1.data_ptr()), c_void_p(arg1831_1.data_ptr()), c_void_p(arg1832_1.data_ptr()), c_void_p(arg1833_1.data_ptr()), c_void_p(arg1834_1.data_ptr()), c_void_p(arg1835_1.data_ptr()), c_void_p(arg1836_1.data_ptr()), c_void_p(arg1837_1.data_ptr()), c_void_p(arg1838_1.data_ptr()), c_void_p(arg1839_1.data_ptr()), c_void_p(arg1840_1.data_ptr()), c_void_p(arg1841_1.data_ptr()), c_void_p(arg1842_1.data_ptr()), c_void_p(arg1843_1.data_ptr()), c_void_p(arg1844_1.data_ptr()), c_void_p(arg1845_1.data_ptr()), c_void_p(arg1846_1.data_ptr()), c_void_p(arg1847_1.data_ptr()), c_void_p(arg1848_1.data_ptr()), c_void_p(arg1849_1.data_ptr()), c_void_p(arg1850_1.data_ptr()), c_void_p(arg1851_1.data_ptr()), c_void_p(arg1852_1.data_ptr()), c_void_p(arg1853_1.data_ptr()), c_void_p(arg1854_1.data_ptr()), c_void_p(arg1855_1.data_ptr()), c_void_p(arg1856_1.data_ptr()), c_void_p(arg1857_1.data_ptr()), c_void_p(arg1858_1.data_ptr()), c_void_p(arg1859_1.data_ptr()), c_void_p(arg1860_1.data_ptr()), c_void_p(arg1861_1.data_ptr()), c_void_p(arg1862_1.data_ptr()), c_void_p(arg1863_1.data_ptr()), c_void_p(arg1864_1.data_ptr()), c_void_p(arg1865_1.data_ptr()), c_void_p(arg1866_1.data_ptr()), c_void_p(arg1867_1.data_ptr()), c_void_p(arg1868_1.data_ptr()), c_void_p(arg1869_1.data_ptr()), c_void_p(arg1870_1.data_ptr()), c_void_p(arg1871_1.data_ptr()), c_void_p(arg1872_1.data_ptr()), c_void_p(arg1873_1.data_ptr()), c_void_p(arg1874_1.data_ptr()), c_void_p(arg1875_1.data_ptr()), c_void_p(arg1876_1.data_ptr()), c_void_p(arg1877_1.data_ptr()), c_void_p(arg1878_1.data_ptr()), c_void_p(arg1879_1.data_ptr()), c_void_p(arg1880_1.data_ptr()), c_void_p(arg1881_1.data_ptr()), c_void_p(arg1882_1.data_ptr()), c_void_p(arg1883_1.data_ptr()), c_void_p(arg1884_1.data_ptr()), c_void_p(arg1885_1.data_ptr()), c_void_p(arg1886_1.data_ptr()), c_void_p(arg1887_1.data_ptr()), c_void_p(arg1888_1.data_ptr()), c_void_p(arg1889_1.data_ptr()), c_void_p(arg1890_1.data_ptr()), c_void_p(arg1891_1.data_ptr()), c_void_p(arg1892_1.data_ptr()), c_void_p(arg1893_1.data_ptr()), c_void_p(arg1894_1.data_ptr()), c_void_p(arg1895_1.data_ptr()), c_void_p(arg1896_1.data_ptr()), c_void_p(arg1897_1.data_ptr()), c_void_p(arg1898_1.data_ptr()), c_void_p(arg1899_1.data_ptr()), c_void_p(arg1900_1.data_ptr()), c_void_p(arg1901_1.data_ptr()), c_void_p(arg1902_1.data_ptr()), c_void_p(arg1903_1.data_ptr()), c_void_p(arg1904_1.data_ptr()), c_void_p(arg1905_1.data_ptr()), c_void_p(arg1906_1.data_ptr()), c_void_p(arg1907_1.data_ptr()), c_void_p(arg1908_1.data_ptr()), c_void_p(arg1909_1.data_ptr()), c_void_p(arg1910_1.data_ptr()), c_void_p(arg1911_1.data_ptr()), c_void_p(arg1912_1.data_ptr()), c_void_p(arg1913_1.data_ptr()), c_void_p(arg1914_1.data_ptr()), c_void_p(arg1915_1.data_ptr()), c_void_p(arg1916_1.data_ptr()), c_void_p(arg1917_1.data_ptr()), c_void_p(arg1918_1.data_ptr()), c_void_p(arg1919_1.data_ptr()), c_void_p(arg1920_1.data_ptr()), c_void_p(arg1921_1.data_ptr()), c_void_p(arg1922_1.data_ptr()), c_void_p(arg1923_1.data_ptr()), c_void_p(arg1924_1.data_ptr()), c_void_p(arg1925_1.data_ptr()), c_void_p(arg1926_1.data_ptr()), c_void_p(arg1927_1.data_ptr()), c_void_p(arg1928_1.data_ptr()), c_void_p(arg1929_1.data_ptr()), c_void_p(arg1930_1.data_ptr()), c_void_p(arg1931_1.data_ptr()), c_void_p(arg1932_1.data_ptr()), c_void_p(arg1933_1.data_ptr()), c_void_p(arg1934_1.data_ptr()), c_void_p(arg1935_1.data_ptr()), c_void_p(arg1936_1.data_ptr()), c_void_p(arg1937_1.data_ptr()), c_void_p(arg1938_1.data_ptr()), c_void_p(arg1939_1.data_ptr()), c_void_p(arg1940_1.data_ptr()), c_void_p(arg1941_1.data_ptr()), c_void_p(arg1942_1.data_ptr()), c_void_p(arg1943_1.data_ptr()), c_void_p(arg1944_1.data_ptr()), c_void_p(arg1945_1.data_ptr()), c_void_p(arg1946_1.data_ptr()), c_void_p(arg1947_1.data_ptr()), c_void_p(arg1948_1.data_ptr()), c_void_p(arg1949_1.data_ptr()), c_void_p(arg1950_1.data_ptr()), c_void_p(arg1951_1.data_ptr()), c_void_p(arg1952_1.data_ptr()), c_void_p(arg1953_1.data_ptr()), c_void_p(arg1954_1.data_ptr()), c_void_p(arg1955_1.data_ptr()), c_void_p(arg1956_1.data_ptr()), c_void_p(arg1957_1.data_ptr()), c_void_p(arg1958_1.data_ptr()), c_void_p(arg1959_1.data_ptr()), c_void_p(arg1960_1.data_ptr()), c_void_p(arg1961_1.data_ptr()), c_void_p(arg1962_1.data_ptr()), c_void_p(arg1963_1.data_ptr()), c_void_p(arg1964_1.data_ptr()), c_void_p(arg1965_1.data_ptr()), c_void_p(arg1966_1.data_ptr()), c_void_p(arg1967_1.data_ptr()), c_void_p(arg1968_1.data_ptr()), c_void_p(arg1969_1.data_ptr()), c_void_p(arg1970_1.data_ptr()), c_void_p(arg1971_1.data_ptr()), c_void_p(arg1972_1.data_ptr()), c_void_p(arg1973_1.data_ptr()), c_void_p(arg1974_1.data_ptr()), c_void_p(arg1975_1.data_ptr()), c_void_p(arg1976_1.data_ptr()), c_void_p(arg1977_1.data_ptr()), c_void_p(arg1978_1.data_ptr()), c_void_p(arg1979_1.data_ptr()), c_void_p(arg1980_1.data_ptr()), c_void_p(arg1981_1.data_ptr()), c_void_p(arg1982_1.data_ptr()), c_void_p(arg1983_1.data_ptr()), c_void_p(arg1984_1.data_ptr()), c_void_p(arg1985_1.data_ptr()), c_void_p(arg1986_1.data_ptr()), c_void_p(arg1987_1.data_ptr()), c_void_p(arg1988_1.data_ptr()), c_void_p(arg1989_1.data_ptr()), c_void_p(arg1990_1.data_ptr()), c_void_p(arg1991_1.data_ptr()), c_void_p(arg1992_1.data_ptr()), c_void_p(arg1993_1.data_ptr()), c_void_p(arg1994_1.data_ptr()), c_void_p(arg1995_1.data_ptr()), c_void_p(arg1996_1.data_ptr()), c_void_p(arg1997_1.data_ptr()), c_void_p(arg1998_1.data_ptr()), c_void_p(arg1999_1.data_ptr()), c_void_p(arg2000_1.data_ptr()), c_void_p(arg2001_1.data_ptr()), c_void_p(arg2002_1.data_ptr()), c_void_p(arg2003_1.data_ptr()), c_void_p(arg2004_1.data_ptr()), c_void_p(arg2005_1.data_ptr()), c_void_p(arg2006_1.data_ptr()), c_void_p(arg2007_1.data_ptr()), c_void_p(arg2008_1.data_ptr()), c_void_p(arg2009_1.data_ptr()), c_void_p(arg2010_1.data_ptr()), c_void_p(arg2011_1.data_ptr()), c_void_p(arg2012_1.data_ptr()), c_void_p(arg2013_1.data_ptr()), c_void_p(arg2014_1.data_ptr()), c_void_p(arg2015_1.data_ptr()), c_void_p(arg2016_1.data_ptr()), c_void_p(arg2017_1.data_ptr()), c_void_p(arg2018_1.data_ptr()), c_void_p(arg2019_1.data_ptr()), c_void_p(arg2020_1.data_ptr()), c_void_p(arg2021_1.data_ptr()), c_void_p(arg2022_1.data_ptr()), c_void_p(arg2023_1.data_ptr()), c_void_p(arg2024_1.data_ptr()), c_void_p(arg2025_1.data_ptr()), c_void_p(arg2026_1.data_ptr()), c_void_p(arg2027_1.data_ptr()), c_void_p(arg2028_1.data_ptr()), c_void_p(arg2029_1.data_ptr()), c_void_p(arg2030_1.data_ptr()), c_void_p(arg2031_1.data_ptr()), c_void_p(arg2032_1.data_ptr()), c_void_p(arg2033_1.data_ptr()), c_void_p(arg2034_1.data_ptr()), c_void_p(arg2035_1.data_ptr()), c_void_p(arg2036_1.data_ptr()), c_void_p(arg2037_1.data_ptr()), c_void_p(arg2038_1.data_ptr()), c_void_p(arg2039_1.data_ptr()), c_void_p(arg2040_1.data_ptr()), c_void_p(arg2041_1.data_ptr()), c_void_p(arg2042_1.data_ptr()), c_void_p(arg2043_1.data_ptr()), c_void_p(arg2044_1.data_ptr()), c_void_p(arg2045_1.data_ptr()), c_void_p(arg2046_1.data_ptr()), c_void_p(arg2047_1.data_ptr()), c_void_p(arg2048_1.data_ptr()), c_void_p(arg2049_1.data_ptr()), c_void_p(arg2050_1.data_ptr()), c_void_p(arg2051_1.data_ptr()), c_void_p(arg2052_1.data_ptr()), c_void_p(arg2053_1.data_ptr()), c_void_p(arg2054_1.data_ptr()), c_void_p(arg2055_1.data_ptr()), c_void_p(arg2056_1.data_ptr()), c_void_p(arg2057_1.data_ptr()), c_void_p(arg2058_1.data_ptr()), c_void_p(arg2059_1.data_ptr()), c_void_p(arg2060_1.data_ptr()), c_void_p(arg2061_1.data_ptr()), c_void_p(arg2062_1.data_ptr()), c_void_p(arg2063_1.data_ptr()), c_void_p(arg2064_1.data_ptr()), c_void_p(arg2065_1.data_ptr()), c_void_p(arg2066_1.data_ptr()), c_void_p(arg2067_1.data_ptr()), c_void_p(arg2068_1.data_ptr()), c_void_p(arg2069_1.data_ptr()), c_void_p(arg2070_1.data_ptr()), c_void_p(arg2071_1.data_ptr()), c_void_p(arg2072_1.data_ptr()), c_void_p(arg2073_1.data_ptr()), c_void_p(arg2074_1.data_ptr()), c_void_p(arg2075_1.data_ptr()), c_void_p(arg2076_1.data_ptr()), c_void_p(arg2077_1.data_ptr()), c_void_p(arg2078_1.data_ptr()), c_void_p(arg2079_1.data_ptr()), c_void_p(arg2080_1.data_ptr()), c_void_p(arg2081_1.data_ptr()), c_void_p(arg2082_1.data_ptr()), c_void_p(arg2083_1.data_ptr()), c_void_p(arg2084_1.data_ptr()), c_void_p(arg2085_1.data_ptr()), c_void_p(arg2086_1.data_ptr()), c_void_p(arg2087_1.data_ptr()), c_void_p(arg2088_1.data_ptr()), c_void_p(arg2089_1.data_ptr()), c_void_p(arg2090_1.data_ptr()), c_void_p(arg2091_1.data_ptr()), c_void_p(arg2092_1.data_ptr()), c_void_p(arg2093_1.data_ptr()), c_void_p(arg2094_1.data_ptr()), c_void_p(arg2095_1.data_ptr()), c_void_p(arg2096_1.data_ptr()), c_void_p(arg2097_1.data_ptr()), c_void_p(arg2098_1.data_ptr()), c_void_p(arg2099_1.data_ptr()), c_void_p(arg2100_1.data_ptr()), c_void_p(arg2101_1.data_ptr()), c_void_p(arg2102_1.data_ptr()), c_void_p(arg2103_1.data_ptr()), c_void_p(arg2104_1.data_ptr()), c_void_p(arg2105_1.data_ptr()), c_void_p(arg2106_1.data_ptr()), c_void_p(arg2107_1.data_ptr()), c_void_p(arg2108_1.data_ptr()), c_void_p(arg2109_1.data_ptr()), c_void_p(arg2110_1.data_ptr()), c_void_p(arg2111_1.data_ptr()), c_void_p(arg2112_1.data_ptr()), c_void_p(arg2113_1.data_ptr()), c_void_p(arg2114_1.data_ptr()), c_void_p(arg2115_1.data_ptr()), c_void_p(arg2116_1.data_ptr()), c_void_p(arg2117_1.data_ptr()), c_void_p(arg2118_1.data_ptr()), c_void_p(arg2119_1.data_ptr()), c_void_p(arg2120_1.data_ptr()), c_void_p(arg2121_1.data_ptr()), c_void_p(arg2122_1.data_ptr()), c_void_p(arg2123_1.data_ptr()), c_void_p(arg2124_1.data_ptr()), c_void_p(arg2125_1.data_ptr()), c_void_p(arg2126_1.data_ptr()), c_void_p(arg2127_1.data_ptr()), c_void_p(arg2128_1.data_ptr()), c_void_p(arg2129_1.data_ptr()), c_void_p(arg2130_1.data_ptr()), c_void_p(arg2131_1.data_ptr()), c_void_p(arg2132_1.data_ptr()), c_void_p(arg2133_1.data_ptr()), c_void_p(arg2134_1.data_ptr()), c_void_p(arg2135_1.data_ptr()), c_void_p(arg2136_1.data_ptr()), c_void_p(arg2137_1.data_ptr()), c_void_p(arg2138_1.data_ptr()), c_void_p(arg2139_1.data_ptr()), c_void_p(arg2140_1.data_ptr()), c_void_p(arg2141_1.data_ptr()), c_void_p(arg2142_1.data_ptr()), c_void_p(arg2143_1.data_ptr()), c_void_p(arg2144_1.data_ptr()), c_void_p(arg2145_1.data_ptr()), c_void_p(arg2146_1.data_ptr()), c_void_p(arg2147_1.data_ptr()), c_void_p(arg2148_1.data_ptr()), c_void_p(arg2149_1.data_ptr()), c_void_p(arg2150_1.data_ptr()), c_void_p(arg2151_1.data_ptr()), c_void_p(arg2152_1.data_ptr()), c_void_p(arg2153_1.data_ptr()), c_void_p(arg2154_1.data_ptr()), c_void_p(arg2155_1.data_ptr()), c_void_p(arg2156_1.data_ptr()), c_void_p(arg2157_1.data_ptr()), c_void_p(arg2158_1.data_ptr()), c_void_p(arg2159_1.data_ptr()), c_void_p(arg2160_1.data_ptr()), c_void_p(arg2161_1.data_ptr()), c_void_p(arg2162_1.data_ptr()), c_void_p(arg2163_1.data_ptr()), c_void_p(arg2164_1.data_ptr()), c_void_p(arg2165_1.data_ptr()), c_void_p(arg2166_1.data_ptr()), c_void_p(arg2167_1.data_ptr()), c_void_p(arg2168_1.data_ptr()), c_void_p(arg2169_1.data_ptr()), c_void_p(arg2170_1.data_ptr()), c_void_p(arg2171_1.data_ptr()), c_void_p(arg2172_1.data_ptr()), c_void_p(arg2173_1.data_ptr()), c_void_p(arg2174_1.data_ptr()), c_void_p(arg2175_1.data_ptr()), c_void_p(arg2176_1.data_ptr()), c_void_p(arg2177_1.data_ptr()), c_void_p(arg2178_1.data_ptr()), c_void_p(arg2179_1.data_ptr()), c_void_p(arg2180_1.data_ptr()), c_void_p(arg2181_1.data_ptr()), c_void_p(arg2182_1.data_ptr()), c_void_p(arg2183_1.data_ptr()), c_void_p(arg1092_1.data_ptr()), c_void_p(arg1456_1.data_ptr()), c_void_p(arg1093_1.data_ptr()), c_void_p(arg1457_1.data_ptr()), c_void_p(arg1094_1.data_ptr()), c_void_p(arg1458_1.data_ptr()), c_void_p(arg1095_1.data_ptr()), c_void_p(arg1459_1.data_ptr()), c_void_p(arg1096_1.data_ptr()), c_void_p(arg1460_1.data_ptr()), c_void_p(arg1097_1.data_ptr()), c_void_p(arg1461_1.data_ptr()), c_void_p(arg1098_1.data_ptr()), c_void_p(arg1462_1.data_ptr()), c_void_p(arg1099_1.data_ptr()), c_void_p(arg1463_1.data_ptr()), c_void_p(arg1100_1.data_ptr()), c_void_p(arg1464_1.data_ptr()), c_void_p(arg1101_1.data_ptr()), c_void_p(arg1465_1.data_ptr()), c_void_p(arg1102_1.data_ptr()), c_void_p(arg1466_1.data_ptr()), c_void_p(arg1103_1.data_ptr()), c_void_p(arg1467_1.data_ptr()), c_void_p(arg1104_1.data_ptr()), c_void_p(arg1468_1.data_ptr()), c_void_p(arg1105_1.data_ptr()), c_void_p(arg1469_1.data_ptr()), c_void_p(arg1106_1.data_ptr()), c_void_p(arg1470_1.data_ptr()), c_void_p(arg1107_1.data_ptr()), c_void_p(arg1471_1.data_ptr()), c_void_p(arg1108_1.data_ptr()), c_void_p(arg1472_1.data_ptr()), c_void_p(arg1109_1.data_ptr()), c_void_p(arg1473_1.data_ptr()), c_void_p(arg1110_1.data_ptr()), c_void_p(arg1474_1.data_ptr()), c_void_p(arg1111_1.data_ptr()), c_void_p(arg1475_1.data_ptr()), c_void_p(arg1112_1.data_ptr()), c_void_p(arg1476_1.data_ptr()), c_void_p(arg1113_1.data_ptr()), c_void_p(arg1477_1.data_ptr()), c_void_p(arg1114_1.data_ptr()), c_void_p(arg1478_1.data_ptr()), c_void_p(arg1115_1.data_ptr()), c_void_p(arg1479_1.data_ptr()), c_void_p(arg1116_1.data_ptr()), c_void_p(arg1480_1.data_ptr()), c_void_p(arg1117_1.data_ptr()), c_void_p(arg1481_1.data_ptr()), c_void_p(arg1118_1.data_ptr()), c_void_p(arg1482_1.data_ptr()), c_void_p(arg1119_1.data_ptr()), c_void_p(arg1483_1.data_ptr()), c_void_p(arg1120_1.data_ptr()), c_void_p(arg1484_1.data_ptr()), c_void_p(arg1121_1.data_ptr()), c_void_p(arg1485_1.data_ptr()), c_void_p(arg1122_1.data_ptr()), c_void_p(arg1486_1.data_ptr()), c_void_p(arg1123_1.data_ptr()), c_void_p(arg1487_1.data_ptr()), c_void_p(arg1124_1.data_ptr()), c_void_p(arg1488_1.data_ptr()), c_void_p(arg1125_1.data_ptr()), c_void_p(arg1489_1.data_ptr()), c_void_p(arg1126_1.data_ptr()), c_void_p(arg1490_1.data_ptr()), c_void_p(arg1127_1.data_ptr()), c_void_p(arg1491_1.data_ptr()), c_void_p(arg1128_1.data_ptr()), c_void_p(arg1492_1.data_ptr()), c_void_p(arg1129_1.data_ptr()), c_void_p(arg1493_1.data_ptr()), c_void_p(arg1130_1.data_ptr()), c_void_p(arg1494_1.data_ptr()), c_void_p(arg1131_1.data_ptr()), c_void_p(arg1495_1.data_ptr()), c_void_p(arg1132_1.data_ptr()), c_void_p(arg1496_1.data_ptr()), c_void_p(arg1133_1.data_ptr()), c_void_p(arg1497_1.data_ptr()), c_void_p(arg1134_1.data_ptr()), c_void_p(arg1498_1.data_ptr()), c_void_p(arg1135_1.data_ptr()), c_void_p(arg1499_1.data_ptr()), c_void_p(arg1136_1.data_ptr()), c_void_p(arg1500_1.data_ptr()), c_void_p(arg1137_1.data_ptr()), c_void_p(arg1501_1.data_ptr()), c_void_p(arg1138_1.data_ptr()), c_void_p(arg1502_1.data_ptr()), c_void_p(arg1139_1.data_ptr()), c_void_p(arg1503_1.data_ptr()), c_void_p(arg1140_1.data_ptr()), c_void_p(arg1504_1.data_ptr()), c_void_p(arg1141_1.data_ptr()), c_void_p(arg1505_1.data_ptr()), c_void_p(arg1142_1.data_ptr()), c_void_p(arg1506_1.data_ptr()), c_void_p(arg1143_1.data_ptr()), c_void_p(arg1507_1.data_ptr()), c_void_p(arg1144_1.data_ptr()), c_void_p(arg1508_1.data_ptr()), c_void_p(arg1145_1.data_ptr()), c_void_p(arg1509_1.data_ptr()), c_void_p(arg1146_1.data_ptr()), c_void_p(arg1510_1.data_ptr()), c_void_p(arg1147_1.data_ptr()), c_void_p(arg1511_1.data_ptr()), c_void_p(arg1148_1.data_ptr()), c_void_p(arg1512_1.data_ptr()), c_void_p(arg1149_1.data_ptr()), c_void_p(arg1513_1.data_ptr()), c_void_p(arg1150_1.data_ptr()), c_void_p(arg1514_1.data_ptr()), c_void_p(arg1151_1.data_ptr()), c_void_p(arg1515_1.data_ptr()), c_void_p(arg1152_1.data_ptr()), c_void_p(arg1516_1.data_ptr()), c_void_p(arg1153_1.data_ptr()), c_void_p(arg1517_1.data_ptr()), c_void_p(arg1154_1.data_ptr()), c_void_p(arg1518_1.data_ptr()), c_void_p(arg1155_1.data_ptr()), c_void_p(arg1519_1.data_ptr()), c_void_p(arg1156_1.data_ptr()), c_void_p(arg1520_1.data_ptr()), c_void_p(arg1157_1.data_ptr()), c_void_p(arg1521_1.data_ptr()), c_void_p(arg1158_1.data_ptr()), c_void_p(arg1522_1.data_ptr()), c_void_p(arg1159_1.data_ptr()), c_void_p(arg1523_1.data_ptr()), c_void_p(arg1160_1.data_ptr()), c_void_p(arg1524_1.data_ptr()), c_void_p(arg1161_1.data_ptr()), c_void_p(arg1525_1.data_ptr()), c_void_p(arg1162_1.data_ptr()), c_void_p(arg1526_1.data_ptr()), c_void_p(arg1163_1.data_ptr()), c_void_p(arg1527_1.data_ptr()), c_void_p(arg1164_1.data_ptr()), c_void_p(arg1528_1.data_ptr()), c_void_p(arg1165_1.data_ptr()), c_void_p(arg1529_1.data_ptr()), c_void_p(arg1166_1.data_ptr()), c_void_p(arg1530_1.data_ptr()), c_void_p(arg1167_1.data_ptr()), c_void_p(arg1531_1.data_ptr()), c_void_p(arg1168_1.data_ptr()), c_void_p(arg1532_1.data_ptr()), c_void_p(arg1169_1.data_ptr()), c_void_p(arg1533_1.data_ptr()), c_void_p(arg1170_1.data_ptr()), c_void_p(arg1534_1.data_ptr()), c_void_p(arg1171_1.data_ptr()), c_void_p(arg1535_1.data_ptr()), c_void_p(arg1172_1.data_ptr()), c_void_p(arg1536_1.data_ptr()), c_void_p(arg1173_1.data_ptr()), c_void_p(arg1537_1.data_ptr()), c_void_p(arg1174_1.data_ptr()), c_void_p(arg1538_1.data_ptr()), c_void_p(arg1175_1.data_ptr()), c_void_p(arg1539_1.data_ptr()), c_void_p(arg1176_1.data_ptr()), c_void_p(arg1540_1.data_ptr()), c_void_p(arg1177_1.data_ptr()), c_void_p(arg1541_1.data_ptr()), c_void_p(arg1178_1.data_ptr()), c_void_p(arg1542_1.data_ptr()), c_void_p(arg1179_1.data_ptr()), c_void_p(arg1543_1.data_ptr()), c_void_p(arg1180_1.data_ptr()), c_void_p(arg1544_1.data_ptr()), c_void_p(arg1181_1.data_ptr()), c_void_p(arg1545_1.data_ptr()), c_void_p(arg1182_1.data_ptr()), c_void_p(arg1546_1.data_ptr()), c_void_p(arg1183_1.data_ptr()), c_void_p(arg1547_1.data_ptr()), c_void_p(arg1184_1.data_ptr()), c_void_p(arg1548_1.data_ptr()), c_void_p(arg1185_1.data_ptr()), c_void_p(arg1549_1.data_ptr()), c_void_p(arg1186_1.data_ptr()), c_void_p(arg1550_1.data_ptr()), c_void_p(arg1187_1.data_ptr()), c_void_p(arg1551_1.data_ptr()), c_void_p(arg1188_1.data_ptr()), c_void_p(arg1552_1.data_ptr()), c_void_p(arg1189_1.data_ptr()), c_void_p(arg1553_1.data_ptr()), c_void_p(arg1190_1.data_ptr()), c_void_p(arg1554_1.data_ptr()), c_void_p(arg1191_1.data_ptr()), c_void_p(arg1555_1.data_ptr()), c_void_p(arg1192_1.data_ptr()), c_void_p(arg1556_1.data_ptr()), c_void_p(arg1193_1.data_ptr()), c_void_p(arg1557_1.data_ptr()), c_void_p(arg1194_1.data_ptr()), c_void_p(arg1558_1.data_ptr()), c_void_p(arg1195_1.data_ptr()), c_void_p(arg1559_1.data_ptr()), c_void_p(arg1196_1.data_ptr()), c_void_p(arg1560_1.data_ptr()), c_void_p(arg1197_1.data_ptr()), c_void_p(arg1561_1.data_ptr()), c_void_p(arg1198_1.data_ptr()), c_void_p(arg1562_1.data_ptr()), c_void_p(arg1199_1.data_ptr()), c_void_p(arg1563_1.data_ptr()), c_void_p(arg1200_1.data_ptr()), c_void_p(arg1564_1.data_ptr()), c_void_p(arg1201_1.data_ptr()), c_void_p(arg1565_1.data_ptr()), c_void_p(arg1202_1.data_ptr()), c_void_p(arg1566_1.data_ptr()), c_void_p(arg1203_1.data_ptr()), c_void_p(arg1567_1.data_ptr()), c_void_p(arg1204_1.data_ptr()), c_void_p(arg1568_1.data_ptr()), c_void_p(arg1205_1.data_ptr()), c_void_p(arg1569_1.data_ptr()), c_void_p(arg1206_1.data_ptr()), c_void_p(arg1570_1.data_ptr()), c_void_p(arg1207_1.data_ptr()), c_void_p(arg1571_1.data_ptr()), c_void_p(arg1208_1.data_ptr()), c_void_p(arg1572_1.data_ptr()), c_void_p(arg1209_1.data_ptr()), c_void_p(arg1573_1.data_ptr()), c_void_p(arg1210_1.data_ptr()), c_void_p(arg1574_1.data_ptr()), c_void_p(arg1211_1.data_ptr()), c_void_p(arg1575_1.data_ptr()), c_void_p(arg1212_1.data_ptr()), c_void_p(arg1576_1.data_ptr()), c_void_p(arg1213_1.data_ptr()), c_void_p(arg1577_1.data_ptr()), c_void_p(arg1214_1.data_ptr()), c_void_p(arg1578_1.data_ptr()), c_void_p(arg1215_1.data_ptr()), c_void_p(arg1579_1.data_ptr()), c_void_p(arg1216_1.data_ptr()), c_void_p(arg1580_1.data_ptr()), c_void_p(arg1217_1.data_ptr()), c_void_p(arg1581_1.data_ptr()), c_void_p(arg1218_1.data_ptr()), c_void_p(arg1582_1.data_ptr()), c_void_p(arg1219_1.data_ptr()), c_void_p(arg1583_1.data_ptr()), c_void_p(arg1220_1.data_ptr()), c_void_p(arg1584_1.data_ptr()), c_void_p(arg1221_1.data_ptr()), c_void_p(arg1585_1.data_ptr()), c_void_p(arg1222_1.data_ptr()), c_void_p(arg1586_1.data_ptr()), c_void_p(arg1223_1.data_ptr()), c_void_p(arg1587_1.data_ptr()), c_void_p(arg1224_1.data_ptr()), c_void_p(arg1588_1.data_ptr()), c_void_p(arg1225_1.data_ptr()), c_void_p(arg1589_1.data_ptr()), c_void_p(arg1226_1.data_ptr()), c_void_p(arg1590_1.data_ptr()), c_void_p(arg1227_1.data_ptr()), c_void_p(arg1591_1.data_ptr()), c_void_p(arg1228_1.data_ptr()), c_void_p(arg1592_1.data_ptr()), c_void_p(arg1229_1.data_ptr()), c_void_p(arg1593_1.data_ptr()), c_void_p(arg1230_1.data_ptr()), c_void_p(arg1594_1.data_ptr()), c_void_p(arg1231_1.data_ptr()), c_void_p(arg1595_1.data_ptr()), c_void_p(arg1232_1.data_ptr()), c_void_p(arg1596_1.data_ptr()), c_void_p(arg1233_1.data_ptr()), c_void_p(arg1597_1.data_ptr()), c_void_p(arg1234_1.data_ptr()), c_void_p(arg1598_1.data_ptr()), c_void_p(arg1235_1.data_ptr()), c_void_p(arg1599_1.data_ptr()), c_void_p(arg1236_1.data_ptr()), c_void_p(arg1600_1.data_ptr()), c_void_p(arg1237_1.data_ptr()), c_void_p(arg1601_1.data_ptr()), c_void_p(arg1238_1.data_ptr()), c_void_p(arg1602_1.data_ptr()), c_void_p(arg1239_1.data_ptr()), c_void_p(arg1603_1.data_ptr()), c_void_p(arg1240_1.data_ptr()), c_void_p(arg1604_1.data_ptr()), c_void_p(arg1241_1.data_ptr()), c_void_p(arg1605_1.data_ptr()), c_void_p(arg1242_1.data_ptr()), c_void_p(arg1606_1.data_ptr()), c_void_p(arg1243_1.data_ptr()), c_void_p(arg1607_1.data_ptr()), c_void_p(arg1244_1.data_ptr()), c_void_p(arg1608_1.data_ptr()), c_void_p(arg1245_1.data_ptr()), c_void_p(arg1609_1.data_ptr()), c_void_p(arg1246_1.data_ptr()), c_void_p(arg1610_1.data_ptr()), c_void_p(arg1247_1.data_ptr()), c_void_p(arg1611_1.data_ptr()), c_void_p(arg1248_1.data_ptr()), c_void_p(arg1612_1.data_ptr()), c_void_p(arg1249_1.data_ptr()), c_void_p(arg1613_1.data_ptr()), c_void_p(arg1250_1.data_ptr()), c_void_p(arg1614_1.data_ptr()), c_void_p(arg1251_1.data_ptr()), c_void_p(arg1615_1.data_ptr()), c_void_p(arg1252_1.data_ptr()), c_void_p(arg1616_1.data_ptr()), c_void_p(arg1253_1.data_ptr()), c_void_p(arg1617_1.data_ptr()), c_void_p(arg1254_1.data_ptr()), c_void_p(arg1618_1.data_ptr()), c_void_p(arg1255_1.data_ptr()), c_void_p(arg1619_1.data_ptr()), c_void_p(arg1256_1.data_ptr()), c_void_p(arg1620_1.data_ptr()), c_void_p(arg1257_1.data_ptr()), c_void_p(arg1621_1.data_ptr()), c_void_p(arg1258_1.data_ptr()), c_void_p(arg1622_1.data_ptr()), c_void_p(arg1259_1.data_ptr()), c_void_p(arg1623_1.data_ptr()), c_void_p(arg1260_1.data_ptr()), c_void_p(arg1624_1.data_ptr()), c_void_p(arg1261_1.data_ptr()), c_void_p(arg1625_1.data_ptr()), c_void_p(arg1262_1.data_ptr()), c_void_p(arg1626_1.data_ptr()), c_void_p(arg1263_1.data_ptr()), c_void_p(arg1627_1.data_ptr()), c_void_p(arg1264_1.data_ptr()), c_void_p(arg1628_1.data_ptr()), c_void_p(arg1265_1.data_ptr()), c_void_p(arg1629_1.data_ptr()), c_void_p(arg1266_1.data_ptr()), c_void_p(arg1630_1.data_ptr()), c_void_p(arg1267_1.data_ptr()), c_void_p(arg1631_1.data_ptr()), c_void_p(arg1268_1.data_ptr()), c_void_p(arg1632_1.data_ptr()), c_void_p(arg1269_1.data_ptr()), c_void_p(arg1633_1.data_ptr()), c_void_p(arg1270_1.data_ptr()), c_void_p(arg1634_1.data_ptr()), c_void_p(arg1271_1.data_ptr()), c_void_p(arg1635_1.data_ptr()), c_void_p(arg1272_1.data_ptr()), c_void_p(arg1636_1.data_ptr()), c_void_p(arg1273_1.data_ptr()), c_void_p(arg1637_1.data_ptr()), c_void_p(arg1274_1.data_ptr()), c_void_p(arg1638_1.data_ptr()), c_void_p(arg1275_1.data_ptr()), c_void_p(arg1639_1.data_ptr()), c_void_p(arg1276_1.data_ptr()), c_void_p(arg1640_1.data_ptr()), c_void_p(arg1277_1.data_ptr()), c_void_p(arg1641_1.data_ptr()), c_void_p(arg1278_1.data_ptr()), c_void_p(arg1642_1.data_ptr()), c_void_p(arg1279_1.data_ptr()), c_void_p(arg1643_1.data_ptr()), c_void_p(arg1280_1.data_ptr()), c_void_p(arg1644_1.data_ptr()), c_void_p(arg1281_1.data_ptr()), c_void_p(arg1645_1.data_ptr()), c_void_p(arg1282_1.data_ptr()), c_void_p(arg1646_1.data_ptr()), c_void_p(arg1283_1.data_ptr()), c_void_p(arg1647_1.data_ptr()), c_void_p(arg1284_1.data_ptr()), c_void_p(arg1648_1.data_ptr()), c_void_p(arg1285_1.data_ptr()), c_void_p(arg1649_1.data_ptr()), c_void_p(arg1286_1.data_ptr()), c_void_p(arg1650_1.data_ptr()), c_void_p(arg1287_1.data_ptr()), c_void_p(arg1651_1.data_ptr()), c_void_p(arg1288_1.data_ptr()), c_void_p(arg1652_1.data_ptr()), c_void_p(arg1289_1.data_ptr()), c_void_p(arg1653_1.data_ptr()), c_void_p(arg1290_1.data_ptr()), c_void_p(arg1654_1.data_ptr()), c_void_p(arg1291_1.data_ptr()), c_void_p(arg1655_1.data_ptr()), c_void_p(arg1292_1.data_ptr()), c_void_p(arg1656_1.data_ptr()), c_void_p(arg1293_1.data_ptr()), c_void_p(arg1657_1.data_ptr()), c_void_p(arg1294_1.data_ptr()), c_void_p(arg1658_1.data_ptr()), c_void_p(arg1295_1.data_ptr()), c_void_p(arg1659_1.data_ptr()), c_void_p(arg1296_1.data_ptr()), c_void_p(arg1660_1.data_ptr()), c_void_p(arg1297_1.data_ptr()), c_void_p(arg1661_1.data_ptr()), c_void_p(arg1298_1.data_ptr()), c_void_p(arg1662_1.data_ptr()), c_void_p(arg1299_1.data_ptr()), c_void_p(arg1663_1.data_ptr()), c_void_p(arg1300_1.data_ptr()), c_void_p(arg1664_1.data_ptr()), c_void_p(arg1301_1.data_ptr()), c_void_p(arg1665_1.data_ptr()), c_void_p(arg1302_1.data_ptr()), c_void_p(arg1666_1.data_ptr()), c_void_p(arg1303_1.data_ptr()), c_void_p(arg1667_1.data_ptr()), c_void_p(arg1304_1.data_ptr()), c_void_p(arg1668_1.data_ptr()), c_void_p(arg1305_1.data_ptr()), c_void_p(arg1669_1.data_ptr()), c_void_p(arg1306_1.data_ptr()), c_void_p(arg1670_1.data_ptr()), c_void_p(arg1307_1.data_ptr()), c_void_p(arg1671_1.data_ptr()), c_void_p(arg1308_1.data_ptr()), c_void_p(arg1672_1.data_ptr()), c_void_p(arg1309_1.data_ptr()), c_void_p(arg1673_1.data_ptr()), c_void_p(arg1310_1.data_ptr()), c_void_p(arg1674_1.data_ptr()), c_void_p(arg1311_1.data_ptr()), c_void_p(arg1675_1.data_ptr()), c_void_p(arg1312_1.data_ptr()), c_void_p(arg1676_1.data_ptr()), c_void_p(arg1313_1.data_ptr()), c_void_p(arg1677_1.data_ptr()), c_void_p(arg1314_1.data_ptr()), c_void_p(arg1678_1.data_ptr()), c_void_p(arg1315_1.data_ptr()), c_void_p(arg1679_1.data_ptr()), c_void_p(arg1316_1.data_ptr()), c_void_p(arg1680_1.data_ptr()), c_void_p(arg1317_1.data_ptr()), c_void_p(arg1681_1.data_ptr()), c_void_p(arg1318_1.data_ptr()), c_void_p(arg1682_1.data_ptr()), c_void_p(arg1319_1.data_ptr()), c_void_p(arg1683_1.data_ptr()), c_void_p(arg1320_1.data_ptr()), c_void_p(arg1684_1.data_ptr()), c_void_p(arg1321_1.data_ptr()), c_void_p(arg1685_1.data_ptr()), c_void_p(arg1322_1.data_ptr()), c_void_p(arg1686_1.data_ptr()), c_void_p(arg1323_1.data_ptr()), c_void_p(arg1687_1.data_ptr()), c_void_p(arg1324_1.data_ptr()), c_void_p(arg1688_1.data_ptr()), c_void_p(arg1325_1.data_ptr()), c_void_p(arg1689_1.data_ptr()), c_void_p(arg1326_1.data_ptr()), c_void_p(arg1690_1.data_ptr()), c_void_p(arg1327_1.data_ptr()), c_void_p(arg1691_1.data_ptr()), c_void_p(arg1328_1.data_ptr()), c_void_p(arg1692_1.data_ptr()), c_void_p(arg1329_1.data_ptr()), c_void_p(arg1693_1.data_ptr()), c_void_p(arg1330_1.data_ptr()), c_void_p(arg1694_1.data_ptr()), c_void_p(arg1331_1.data_ptr()), c_void_p(arg1695_1.data_ptr()), c_void_p(arg1332_1.data_ptr()), c_void_p(arg1696_1.data_ptr()), c_void_p(arg1333_1.data_ptr()), c_void_p(arg1697_1.data_ptr()), c_void_p(arg1334_1.data_ptr()), c_void_p(arg1698_1.data_ptr()), c_void_p(arg1335_1.data_ptr()), c_void_p(arg1699_1.data_ptr()), c_void_p(arg1336_1.data_ptr()), c_void_p(arg1700_1.data_ptr()), c_void_p(arg1337_1.data_ptr()), c_void_p(arg1701_1.data_ptr()), c_void_p(arg1338_1.data_ptr()), c_void_p(arg1702_1.data_ptr()), c_void_p(arg1339_1.data_ptr()), c_void_p(arg1703_1.data_ptr()), c_void_p(arg1340_1.data_ptr()), c_void_p(arg1704_1.data_ptr()), c_void_p(arg1341_1.data_ptr()), c_void_p(arg1705_1.data_ptr()), c_void_p(arg1342_1.data_ptr()), c_void_p(arg1706_1.data_ptr()), c_void_p(arg1343_1.data_ptr()), c_void_p(arg1707_1.data_ptr()), c_void_p(arg1344_1.data_ptr()), c_void_p(arg1708_1.data_ptr()), c_void_p(arg1345_1.data_ptr()), c_void_p(arg1709_1.data_ptr()), c_void_p(arg1346_1.data_ptr()), c_void_p(arg1710_1.data_ptr()), c_void_p(arg1347_1.data_ptr()), c_void_p(arg1711_1.data_ptr()), c_void_p(arg1348_1.data_ptr()), c_void_p(arg1712_1.data_ptr()), c_void_p(arg1349_1.data_ptr()), c_void_p(arg1713_1.data_ptr()), c_void_p(arg1350_1.data_ptr()), c_void_p(arg1714_1.data_ptr()), c_void_p(arg1351_1.data_ptr()), c_void_p(arg1715_1.data_ptr()), c_void_p(arg1352_1.data_ptr()), c_void_p(arg1716_1.data_ptr()), c_void_p(arg1353_1.data_ptr()), c_void_p(arg1717_1.data_ptr()), c_void_p(arg1354_1.data_ptr()), c_void_p(arg1718_1.data_ptr()), c_void_p(arg1355_1.data_ptr()), c_void_p(arg1719_1.data_ptr()), c_void_p(arg1356_1.data_ptr()), c_void_p(arg1720_1.data_ptr()), c_void_p(arg1357_1.data_ptr()), c_void_p(arg1721_1.data_ptr()), c_void_p(arg1358_1.data_ptr()), c_void_p(arg1722_1.data_ptr()), c_void_p(arg1359_1.data_ptr()), c_void_p(arg1723_1.data_ptr()), c_void_p(arg1360_1.data_ptr()), c_void_p(arg1724_1.data_ptr()), c_void_p(arg1361_1.data_ptr()), c_void_p(arg1725_1.data_ptr()), c_void_p(arg1362_1.data_ptr()), c_void_p(arg1726_1.data_ptr()), c_void_p(arg1363_1.data_ptr()), c_void_p(arg1727_1.data_ptr()), c_void_p(arg1364_1.data_ptr()), c_void_p(arg1728_1.data_ptr()), c_void_p(arg1365_1.data_ptr()), c_void_p(arg1729_1.data_ptr()), c_void_p(arg1366_1.data_ptr()), c_void_p(arg1730_1.data_ptr()), c_void_p(arg1367_1.data_ptr()), c_void_p(arg1731_1.data_ptr()), c_void_p(arg1368_1.data_ptr()), c_void_p(arg1732_1.data_ptr()), c_void_p(arg1369_1.data_ptr()), c_void_p(arg1733_1.data_ptr()), c_void_p(arg1370_1.data_ptr()), c_void_p(arg1734_1.data_ptr()), c_void_p(arg1371_1.data_ptr()), c_void_p(arg1735_1.data_ptr()), c_void_p(arg1372_1.data_ptr()), c_void_p(arg1736_1.data_ptr()), c_void_p(arg1373_1.data_ptr()), c_void_p(arg1737_1.data_ptr()), c_void_p(arg1374_1.data_ptr()), c_void_p(arg1738_1.data_ptr()), c_void_p(arg1375_1.data_ptr()), c_void_p(arg1739_1.data_ptr()), c_void_p(arg1376_1.data_ptr()), c_void_p(arg1740_1.data_ptr()), c_void_p(arg1377_1.data_ptr()), c_void_p(arg1741_1.data_ptr()), c_void_p(arg1378_1.data_ptr()), c_void_p(arg1742_1.data_ptr()), c_void_p(arg1379_1.data_ptr()), c_void_p(arg1743_1.data_ptr()), c_void_p(arg1380_1.data_ptr()), c_void_p(arg1744_1.data_ptr()), c_void_p(arg1381_1.data_ptr()), c_void_p(arg1745_1.data_ptr()), c_void_p(arg1382_1.data_ptr()), c_void_p(arg1746_1.data_ptr()), c_void_p(arg1383_1.data_ptr()), c_void_p(arg1747_1.data_ptr()), c_void_p(arg1384_1.data_ptr()), c_void_p(arg1748_1.data_ptr()), c_void_p(arg1385_1.data_ptr()), c_void_p(arg1749_1.data_ptr()), c_void_p(arg1386_1.data_ptr()), c_void_p(arg1750_1.data_ptr()), c_void_p(arg1387_1.data_ptr()), c_void_p(arg1751_1.data_ptr()), c_void_p(arg1388_1.data_ptr()), c_void_p(arg1752_1.data_ptr()), c_void_p(arg1389_1.data_ptr()), c_void_p(arg1753_1.data_ptr()), c_void_p(arg1390_1.data_ptr()), c_void_p(arg1754_1.data_ptr()), c_void_p(arg1391_1.data_ptr()), c_void_p(arg1755_1.data_ptr()), c_void_p(arg1392_1.data_ptr()), c_void_p(arg1756_1.data_ptr()), c_void_p(arg1393_1.data_ptr()), c_void_p(arg1757_1.data_ptr()), c_void_p(arg1394_1.data_ptr()), c_void_p(arg1758_1.data_ptr()), c_void_p(arg1395_1.data_ptr()), c_void_p(arg1759_1.data_ptr()), c_void_p(arg1396_1.data_ptr()), c_void_p(arg1760_1.data_ptr()), c_void_p(arg1397_1.data_ptr()), c_void_p(arg1761_1.data_ptr()), c_void_p(arg1398_1.data_ptr()), c_void_p(arg1762_1.data_ptr()), c_void_p(arg1399_1.data_ptr()), c_void_p(arg1763_1.data_ptr()), c_void_p(arg1400_1.data_ptr()), c_void_p(arg1764_1.data_ptr()), c_void_p(arg1401_1.data_ptr()), c_void_p(arg1765_1.data_ptr()), c_void_p(arg1402_1.data_ptr()), c_void_p(arg1766_1.data_ptr()), c_void_p(arg1403_1.data_ptr()), c_void_p(arg1767_1.data_ptr()), c_void_p(arg1404_1.data_ptr()), c_void_p(arg1768_1.data_ptr()), c_void_p(arg1405_1.data_ptr()), c_void_p(arg1769_1.data_ptr()), c_void_p(arg1406_1.data_ptr()), c_void_p(arg1770_1.data_ptr()), c_void_p(arg1407_1.data_ptr()), c_void_p(arg1771_1.data_ptr()), c_void_p(arg1408_1.data_ptr()), c_void_p(arg1772_1.data_ptr()), c_void_p(arg1409_1.data_ptr()), c_void_p(arg1773_1.data_ptr()), c_void_p(arg1410_1.data_ptr()), c_void_p(arg1774_1.data_ptr()), c_void_p(arg1411_1.data_ptr()), c_void_p(arg1775_1.data_ptr()), c_void_p(arg1412_1.data_ptr()), c_void_p(arg1776_1.data_ptr()), c_void_p(arg1413_1.data_ptr()), c_void_p(arg1777_1.data_ptr()), c_void_p(arg1414_1.data_ptr()), c_void_p(arg1778_1.data_ptr()), c_void_p(arg1415_1.data_ptr()), c_void_p(arg1779_1.data_ptr()), c_void_p(arg1416_1.data_ptr()), c_void_p(arg1780_1.data_ptr()), c_void_p(arg1417_1.data_ptr()), c_void_p(arg1781_1.data_ptr()), c_void_p(arg1418_1.data_ptr()), c_void_p(arg1782_1.data_ptr()), c_void_p(arg1419_1.data_ptr()), c_void_p(arg1783_1.data_ptr()), c_void_p(arg1420_1.data_ptr()), c_void_p(arg1784_1.data_ptr()), c_void_p(arg1421_1.data_ptr()), c_void_p(arg1785_1.data_ptr()), c_void_p(arg1422_1.data_ptr()), c_void_p(arg1786_1.data_ptr()), c_void_p(arg1423_1.data_ptr()), c_void_p(arg1787_1.data_ptr()), c_void_p(arg1424_1.data_ptr()), c_void_p(arg1788_1.data_ptr()), c_void_p(arg1425_1.data_ptr()), c_void_p(arg1789_1.data_ptr()), c_void_p(arg1426_1.data_ptr()), c_void_p(arg1790_1.data_ptr()), c_void_p(arg1427_1.data_ptr()), c_void_p(arg1791_1.data_ptr()), c_void_p(arg1428_1.data_ptr()), c_void_p(arg1792_1.data_ptr()), c_void_p(arg1429_1.data_ptr()), c_void_p(arg1793_1.data_ptr()), c_void_p(arg1430_1.data_ptr()), c_void_p(arg1794_1.data_ptr()), c_void_p(arg1431_1.data_ptr()), c_void_p(arg1795_1.data_ptr()), c_void_p(arg1432_1.data_ptr()), c_void_p(arg1796_1.data_ptr()), c_void_p(arg1433_1.data_ptr()), c_void_p(arg1797_1.data_ptr()), c_void_p(arg1434_1.data_ptr()), c_void_p(arg1798_1.data_ptr()), c_void_p(arg1435_1.data_ptr()), c_void_p(arg1799_1.data_ptr()), c_void_p(arg1436_1.data_ptr()), c_void_p(arg1800_1.data_ptr()), c_void_p(arg1437_1.data_ptr()), c_void_p(arg1801_1.data_ptr()), c_void_p(arg1438_1.data_ptr()), c_void_p(arg1802_1.data_ptr()), c_void_p(arg1439_1.data_ptr()), c_void_p(arg1803_1.data_ptr()), c_void_p(arg1440_1.data_ptr()), c_void_p(arg1804_1.data_ptr()), c_void_p(arg1441_1.data_ptr()), c_void_p(arg1805_1.data_ptr()), c_void_p(arg1442_1.data_ptr()), c_void_p(arg1806_1.data_ptr()), c_void_p(arg1443_1.data_ptr()), c_void_p(arg1807_1.data_ptr()), c_void_p(arg1444_1.data_ptr()), c_void_p(arg1808_1.data_ptr()), c_void_p(arg1445_1.data_ptr()), c_void_p(arg1809_1.data_ptr()), c_void_p(arg1446_1.data_ptr()), c_void_p(arg1810_1.data_ptr()), c_void_p(arg1447_1.data_ptr()), c_void_p(arg1811_1.data_ptr()), c_void_p(arg1448_1.data_ptr()), c_void_p(arg1812_1.data_ptr()), c_void_p(arg1449_1.data_ptr()), c_void_p(arg1813_1.data_ptr()), c_void_p(arg1450_1.data_ptr()), c_void_p(arg1814_1.data_ptr()), c_void_p(arg1451_1.data_ptr()), c_void_p(arg1815_1.data_ptr()), c_void_p(arg1452_1.data_ptr()), c_void_p(arg1816_1.data_ptr()), c_void_p(arg1453_1.data_ptr()), c_void_p(arg1817_1.data_ptr()), c_void_p(arg1454_1.data_ptr()), c_void_p(arg1818_1.data_ptr()), c_void_p(arg1455_1.data_ptr()), c_void_p(arg1819_1.data_ptr()), c_void_p(arg1820_1.data_ptr()), c_void_p(arg1821_1.data_ptr()), c_void_p(arg1822_1.data_ptr()), c_void_p(arg1823_1.data_ptr()), c_void_p(arg1824_1.data_ptr()), c_void_p(arg1825_1.data_ptr()), c_void_p(arg1826_1.data_ptr()), c_void_p(arg1827_1.data_ptr()), c_void_p(arg1828_1.data_ptr()), c_void_p(arg1829_1.data_ptr()), c_void_p(arg1830_1.data_ptr()), c_void_p(arg1831_1.data_ptr()), c_void_p(arg1832_1.data_ptr()), c_void_p(arg1833_1.data_ptr()), c_void_p(arg1834_1.data_ptr()), c_void_p(arg1835_1.data_ptr()), c_void_p(arg1836_1.data_ptr()), c_void_p(arg1837_1.data_ptr()), c_void_p(arg1838_1.data_ptr()), c_void_p(arg1839_1.data_ptr()), c_void_p(arg1840_1.data_ptr()), c_void_p(arg1841_1.data_ptr()), c_void_p(arg1842_1.data_ptr()), c_void_p(arg1843_1.data_ptr()), c_void_p(arg1844_1.data_ptr()), c_void_p(arg1845_1.data_ptr()), c_void_p(arg1846_1.data_ptr()), c_void_p(arg1847_1.data_ptr()), c_void_p(arg1848_1.data_ptr()), c_void_p(arg1849_1.data_ptr()), c_void_p(arg1850_1.data_ptr()), c_void_p(arg1851_1.data_ptr()), c_void_p(arg1852_1.data_ptr()), c_void_p(arg1853_1.data_ptr()), c_void_p(arg1854_1.data_ptr()), c_void_p(arg1855_1.data_ptr()), c_void_p(arg1856_1.data_ptr()), c_void_p(arg1857_1.data_ptr()), c_void_p(arg1858_1.data_ptr()), c_void_p(arg1859_1.data_ptr()), c_void_p(arg1860_1.data_ptr()), c_void_p(arg1861_1.data_ptr()), c_void_p(arg1862_1.data_ptr()), c_void_p(arg1863_1.data_ptr()), c_void_p(arg1864_1.data_ptr()), c_void_p(arg1865_1.data_ptr()), c_void_p(arg1866_1.data_ptr()), c_void_p(arg1867_1.data_ptr()), c_void_p(arg1868_1.data_ptr()), c_void_p(arg1869_1.data_ptr()), c_void_p(arg1870_1.data_ptr()), c_void_p(arg1871_1.data_ptr()), c_void_p(arg1872_1.data_ptr()), c_void_p(arg1873_1.data_ptr()), c_void_p(arg1874_1.data_ptr()), c_void_p(arg1875_1.data_ptr()), c_void_p(arg1876_1.data_ptr()), c_void_p(arg1877_1.data_ptr()), c_void_p(arg1878_1.data_ptr()), c_void_p(arg1879_1.data_ptr()), c_void_p(arg1880_1.data_ptr()), c_void_p(arg1881_1.data_ptr()), c_void_p(arg1882_1.data_ptr()), c_void_p(arg1883_1.data_ptr()), c_void_p(arg1884_1.data_ptr()), c_void_p(arg1885_1.data_ptr()), c_void_p(arg1886_1.data_ptr()), c_void_p(arg1887_1.data_ptr()), c_void_p(arg1888_1.data_ptr()), c_void_p(arg1889_1.data_ptr()), c_void_p(arg1890_1.data_ptr()), c_void_p(arg1891_1.data_ptr()), c_void_p(arg1892_1.data_ptr()), c_void_p(arg1893_1.data_ptr()), c_void_p(arg1894_1.data_ptr()), c_void_p(arg1895_1.data_ptr()), c_void_p(arg1896_1.data_ptr()), c_void_p(arg1897_1.data_ptr()), c_void_p(arg1898_1.data_ptr()), c_void_p(arg1899_1.data_ptr()), c_void_p(arg1900_1.data_ptr()), c_void_p(arg1901_1.data_ptr()), c_void_p(arg1902_1.data_ptr()), c_void_p(arg1903_1.data_ptr()), c_void_p(arg1904_1.data_ptr()), c_void_p(arg1905_1.data_ptr()), c_void_p(arg1906_1.data_ptr()), c_void_p(arg1907_1.data_ptr()), c_void_p(arg1908_1.data_ptr()), c_void_p(arg1909_1.data_ptr()), c_void_p(arg1910_1.data_ptr()), c_void_p(arg1911_1.data_ptr()), c_void_p(arg1912_1.data_ptr()), c_void_p(arg1913_1.data_ptr()), c_void_p(arg1914_1.data_ptr()), c_void_p(arg1915_1.data_ptr()), c_void_p(arg1916_1.data_ptr()), c_void_p(arg1917_1.data_ptr()), c_void_p(arg1918_1.data_ptr()), c_void_p(arg1919_1.data_ptr()), c_void_p(arg1920_1.data_ptr()), c_void_p(arg1921_1.data_ptr()), c_void_p(arg1922_1.data_ptr()), c_void_p(arg1923_1.data_ptr()), c_void_p(arg1924_1.data_ptr()), c_void_p(arg1925_1.data_ptr()), c_void_p(arg1926_1.data_ptr()), c_void_p(arg1927_1.data_ptr()), c_void_p(arg1928_1.data_ptr()), c_void_p(arg1929_1.data_ptr()), c_void_p(arg1930_1.data_ptr()), c_void_p(arg1931_1.data_ptr()), c_void_p(arg1932_1.data_ptr()), c_void_p(arg1933_1.data_ptr()), c_void_p(arg1934_1.data_ptr()), c_void_p(arg1935_1.data_ptr()), c_void_p(arg1936_1.data_ptr()), c_void_p(arg1937_1.data_ptr()), c_void_p(arg1938_1.data_ptr()), c_void_p(arg1939_1.data_ptr()), c_void_p(arg1940_1.data_ptr()), c_void_p(arg1941_1.data_ptr()), c_void_p(arg1942_1.data_ptr()), c_void_p(arg1943_1.data_ptr()), c_void_p(arg1944_1.data_ptr()), c_void_p(arg1945_1.data_ptr()), c_void_p(arg1946_1.data_ptr()), c_void_p(arg1947_1.data_ptr()), c_void_p(arg1948_1.data_ptr()), c_void_p(arg1949_1.data_ptr()), c_void_p(arg1950_1.data_ptr()), c_void_p(arg1951_1.data_ptr()), c_void_p(arg1952_1.data_ptr()), c_void_p(arg1953_1.data_ptr()), c_void_p(arg1954_1.data_ptr()), c_void_p(arg1955_1.data_ptr()), c_void_p(arg1956_1.data_ptr()), c_void_p(arg1957_1.data_ptr()), c_void_p(arg1958_1.data_ptr()), c_void_p(arg1959_1.data_ptr()), c_void_p(arg1960_1.data_ptr()), c_void_p(arg1961_1.data_ptr()), c_void_p(arg1962_1.data_ptr()), c_void_p(arg1963_1.data_ptr()), c_void_p(arg1964_1.data_ptr()), c_void_p(arg1965_1.data_ptr()), c_void_p(arg1966_1.data_ptr()), c_void_p(arg1967_1.data_ptr()), c_void_p(arg1968_1.data_ptr()), c_void_p(arg1969_1.data_ptr()), c_void_p(arg1970_1.data_ptr()), c_void_p(arg1971_1.data_ptr()), c_void_p(arg1972_1.data_ptr()), c_void_p(arg1973_1.data_ptr()), c_void_p(arg1974_1.data_ptr()), c_void_p(arg1975_1.data_ptr()), c_void_p(arg1976_1.data_ptr()), c_void_p(arg1977_1.data_ptr()), c_void_p(arg1978_1.data_ptr()), c_void_p(arg1979_1.data_ptr()), c_void_p(arg1980_1.data_ptr()), c_void_p(arg1981_1.data_ptr()), c_void_p(arg1982_1.data_ptr()), c_void_p(arg1983_1.data_ptr()), c_void_p(arg1984_1.data_ptr()), c_void_p(arg1985_1.data_ptr()), c_void_p(arg1986_1.data_ptr()), c_void_p(arg1987_1.data_ptr()), c_void_p(arg1988_1.data_ptr()), c_void_p(arg1989_1.data_ptr()), c_void_p(arg1990_1.data_ptr()), c_void_p(arg1991_1.data_ptr()), c_void_p(arg1992_1.data_ptr()), c_void_p(arg1993_1.data_ptr()), c_void_p(arg1994_1.data_ptr()), c_void_p(arg1995_1.data_ptr()), c_void_p(arg1996_1.data_ptr()), c_void_p(arg1997_1.data_ptr()), c_void_p(arg1998_1.data_ptr()), c_void_p(arg1999_1.data_ptr()), c_void_p(arg2000_1.data_ptr()), c_void_p(arg2001_1.data_ptr()), c_void_p(arg2002_1.data_ptr()), c_void_p(arg2003_1.data_ptr()), c_void_p(arg2004_1.data_ptr()), c_void_p(arg2005_1.data_ptr()), c_void_p(arg2006_1.data_ptr()), c_void_p(arg2007_1.data_ptr()), c_void_p(arg2008_1.data_ptr()), c_void_p(arg2009_1.data_ptr()), c_void_p(arg2010_1.data_ptr()), c_void_p(arg2011_1.data_ptr()), c_void_p(arg2012_1.data_ptr()), c_void_p(arg2013_1.data_ptr()), c_void_p(arg2014_1.data_ptr()), c_void_p(arg2015_1.data_ptr()), c_void_p(arg2016_1.data_ptr()), c_void_p(arg2017_1.data_ptr()), c_void_p(arg2018_1.data_ptr()), c_void_p(arg2019_1.data_ptr()), c_void_p(arg2020_1.data_ptr()), c_void_p(arg2021_1.data_ptr()), c_void_p(arg2022_1.data_ptr()), c_void_p(arg2023_1.data_ptr()), c_void_p(arg2024_1.data_ptr()), c_void_p(arg2025_1.data_ptr()), c_void_p(arg2026_1.data_ptr()), c_void_p(arg2027_1.data_ptr()), c_void_p(arg2028_1.data_ptr()), c_void_p(arg2029_1.data_ptr()), c_void_p(arg2030_1.data_ptr()), c_void_p(arg2031_1.data_ptr()), c_void_p(arg2032_1.data_ptr()), c_void_p(arg2033_1.data_ptr()), c_void_p(arg2034_1.data_ptr()), c_void_p(arg2035_1.data_ptr()), c_void_p(arg2036_1.data_ptr()), c_void_p(arg2037_1.data_ptr()), c_void_p(arg2038_1.data_ptr()), c_void_p(arg2039_1.data_ptr()), c_void_p(arg2040_1.data_ptr()), c_void_p(arg2041_1.data_ptr()), c_void_p(arg2042_1.data_ptr()), c_void_p(arg2043_1.data_ptr()), c_void_p(arg2044_1.data_ptr()), c_void_p(arg2045_1.data_ptr()), c_void_p(arg2046_1.data_ptr()), c_void_p(arg2047_1.data_ptr()), c_void_p(arg2048_1.data_ptr()), c_void_p(arg2049_1.data_ptr()), c_void_p(arg2050_1.data_ptr()), c_void_p(arg2051_1.data_ptr()), c_void_p(arg2052_1.data_ptr()), c_void_p(arg2053_1.data_ptr()), c_void_p(arg2054_1.data_ptr()), c_void_p(arg2055_1.data_ptr()), c_void_p(arg2056_1.data_ptr()), c_void_p(arg2057_1.data_ptr()), c_void_p(arg2058_1.data_ptr()), c_void_p(arg2059_1.data_ptr()), c_void_p(arg2060_1.data_ptr()), c_void_p(arg2061_1.data_ptr()), c_void_p(arg2062_1.data_ptr()), c_void_p(arg2063_1.data_ptr()), c_void_p(arg2064_1.data_ptr()), c_void_p(arg2065_1.data_ptr()), c_void_p(arg2066_1.data_ptr()), c_void_p(arg2067_1.data_ptr()), c_void_p(arg2068_1.data_ptr()), c_void_p(arg2069_1.data_ptr()), c_void_p(arg2070_1.data_ptr()), c_void_p(arg2071_1.data_ptr()), c_void_p(arg2072_1.data_ptr()), c_void_p(arg2073_1.data_ptr()), c_void_p(arg2074_1.data_ptr()), c_void_p(arg2075_1.data_ptr()), c_void_p(arg2076_1.data_ptr()), c_void_p(arg2077_1.data_ptr()), c_void_p(arg2078_1.data_ptr()), c_void_p(arg2079_1.data_ptr()), c_void_p(arg2080_1.data_ptr()), c_void_p(arg2081_1.data_ptr()), c_void_p(arg2082_1.data_ptr()), c_void_p(arg2083_1.data_ptr()), c_void_p(arg2084_1.data_ptr()), c_void_p(arg2085_1.data_ptr()), c_void_p(arg2086_1.data_ptr()), c_void_p(arg2087_1.data_ptr()), c_void_p(arg2088_1.data_ptr()), c_void_p(arg2089_1.data_ptr()), c_void_p(arg2090_1.data_ptr()), c_void_p(arg2091_1.data_ptr()), c_void_p(arg2092_1.data_ptr()), c_void_p(arg2093_1.data_ptr()), c_void_p(arg2094_1.data_ptr()), c_void_p(arg2095_1.data_ptr()), c_void_p(arg2096_1.data_ptr()), c_void_p(arg2097_1.data_ptr()), c_void_p(arg2098_1.data_ptr()), c_void_p(arg2099_1.data_ptr()), c_void_p(arg2100_1.data_ptr()), c_void_p(arg2101_1.data_ptr()), c_void_p(arg2102_1.data_ptr()), c_void_p(arg2103_1.data_ptr()), c_void_p(arg2104_1.data_ptr()), c_void_p(arg2105_1.data_ptr()), c_void_p(arg2106_1.data_ptr()), c_void_p(arg2107_1.data_ptr()), c_void_p(arg2108_1.data_ptr()), c_void_p(arg2109_1.data_ptr()), c_void_p(arg2110_1.data_ptr()), c_void_p(arg2111_1.data_ptr()), c_void_p(arg2112_1.data_ptr()), c_void_p(arg2113_1.data_ptr()), c_void_p(arg2114_1.data_ptr()), c_void_p(arg2115_1.data_ptr()), c_void_p(arg2116_1.data_ptr()), c_void_p(arg2117_1.data_ptr()), c_void_p(arg2118_1.data_ptr()), c_void_p(arg2119_1.data_ptr()), c_void_p(arg2120_1.data_ptr()), c_void_p(arg2121_1.data_ptr()), c_void_p(arg2122_1.data_ptr()), c_void_p(arg2123_1.data_ptr()), c_void_p(arg2124_1.data_ptr()), c_void_p(arg2125_1.data_ptr()), c_void_p(arg2126_1.data_ptr()), c_void_p(arg2127_1.data_ptr()), c_void_p(arg2128_1.data_ptr()), c_void_p(arg2129_1.data_ptr()), c_void_p(arg2130_1.data_ptr()), c_void_p(arg2131_1.data_ptr()), c_void_p(arg2132_1.data_ptr()), c_void_p(arg2133_1.data_ptr()), c_void_p(arg2134_1.data_ptr()), c_void_p(arg2135_1.data_ptr()), c_void_p(arg2136_1.data_ptr()), c_void_p(arg2137_1.data_ptr()), c_void_p(arg2138_1.data_ptr()), c_void_p(arg2139_1.data_ptr()), c_void_p(arg2140_1.data_ptr()), c_void_p(arg2141_1.data_ptr()), c_void_p(arg2142_1.data_ptr()), c_void_p(arg2143_1.data_ptr()), c_void_p(arg2144_1.data_ptr()), c_void_p(arg2145_1.data_ptr()), c_void_p(arg2146_1.data_ptr()), c_void_p(arg2147_1.data_ptr()), c_void_p(arg2148_1.data_ptr()), c_void_p(arg2149_1.data_ptr()), c_void_p(arg2150_1.data_ptr()), c_void_p(arg2151_1.data_ptr()), c_void_p(arg2152_1.data_ptr()), c_void_p(arg2153_1.data_ptr()), c_void_p(arg2154_1.data_ptr()), c_void_p(arg2155_1.data_ptr()), c_void_p(arg2156_1.data_ptr()), c_void_p(arg2157_1.data_ptr()), c_void_p(arg2158_1.data_ptr()), c_void_p(arg2159_1.data_ptr()), c_void_p(arg2160_1.data_ptr()), c_void_p(arg2161_1.data_ptr()), c_void_p(arg2162_1.data_ptr()), c_void_p(arg2163_1.data_ptr()), c_void_p(arg2164_1.data_ptr()), c_void_p(arg2165_1.data_ptr()), c_void_p(arg2166_1.data_ptr()), c_void_p(arg2167_1.data_ptr()), c_void_p(arg2168_1.data_ptr()), c_void_p(arg2169_1.data_ptr()), c_void_p(arg2170_1.data_ptr()), c_void_p(arg2171_1.data_ptr()), c_void_p(arg2172_1.data_ptr()), c_void_p(arg2173_1.data_ptr()), c_void_p(arg2174_1.data_ptr()), c_void_p(arg2175_1.data_ptr()), c_void_p(arg2176_1.data_ptr()), c_void_p(arg2177_1.data_ptr()), c_void_p(arg2178_1.data_ptr()), c_void_p(arg2179_1.data_ptr()), c_void_p(arg2180_1.data_ptr()), c_void_p(arg2181_1.data_ptr()), c_void_p(arg2182_1.data_ptr()), c_void_p(arg2183_1.data_ptr())) | |
| del arg1092_1 | |
| del arg1093_1 | |
| del arg1094_1 | |
| del arg1095_1 | |
| del arg1096_1 | |
| del arg1097_1 | |
| del arg1098_1 | |
| del arg1099_1 | |
| del arg1100_1 | |
| del arg1101_1 | |
| del arg1102_1 | |
| del arg1103_1 | |
| del arg1104_1 | |
| del arg1105_1 | |
| del arg1106_1 | |
| del arg1107_1 | |
| del arg1108_1 | |
| del arg1109_1 | |
| del arg1110_1 | |
| del arg1111_1 | |
| del arg1112_1 | |
| del arg1113_1 | |
| del arg1114_1 | |
| del arg1115_1 | |
| del arg1116_1 | |
| del arg1117_1 | |
| del arg1118_1 | |
| del arg1119_1 | |
| del arg1120_1 | |
| del arg1121_1 | |
| del arg1122_1 | |
| del arg1123_1 | |
| del arg1124_1 | |
| del arg1125_1 | |
| del arg1126_1 | |
| del arg1127_1 | |
| del arg1128_1 | |
| del arg1129_1 | |
| del arg1130_1 | |
| del arg1131_1 | |
| del arg1132_1 | |
| del arg1133_1 | |
| del arg1134_1 | |
| del arg1135_1 | |
| del arg1136_1 | |
| del arg1137_1 | |
| del arg1138_1 | |
| del arg1139_1 | |
| del arg1140_1 | |
| del arg1141_1 | |
| del arg1142_1 | |
| del arg1143_1 | |
| del arg1144_1 | |
| del arg1145_1 | |
| del arg1146_1 | |
| del arg1147_1 | |
| del arg1148_1 | |
| del arg1149_1 | |
| del arg1150_1 | |
| del arg1151_1 | |
| del arg1152_1 | |
| del arg1153_1 | |
| del arg1154_1 | |
| del arg1155_1 | |
| del arg1156_1 | |
| del arg1157_1 | |
| del arg1158_1 | |
| del arg1159_1 | |
| del arg1160_1 | |
| del arg1161_1 | |
| del arg1162_1 | |
| del arg1163_1 | |
| del arg1164_1 | |
| del arg1165_1 | |
| del arg1166_1 | |
| del arg1167_1 | |
| del arg1168_1 | |
| del arg1169_1 | |
| del arg1170_1 | |
| del arg1171_1 | |
| del arg1172_1 | |
| del arg1173_1 | |
| del arg1174_1 | |
| del arg1175_1 | |
| del arg1176_1 | |
| del arg1177_1 | |
| del arg1178_1 | |
| del arg1179_1 | |
| del arg1180_1 | |
| del arg1181_1 | |
| del arg1182_1 | |
| del arg1183_1 | |
| del arg1184_1 | |
| del arg1185_1 | |
| del arg1186_1 | |
| del arg1187_1 | |
| del arg1188_1 | |
| del arg1189_1 | |
| del arg1190_1 | |
| del arg1191_1 | |
| del arg1192_1 | |
| del arg1193_1 | |
| del arg1194_1 | |
| del arg1195_1 | |
| del arg1196_1 | |
| del arg1197_1 | |
| del arg1198_1 | |
| del arg1199_1 | |
| del arg1200_1 | |
| del arg1201_1 | |
| del arg1202_1 | |
| del arg1203_1 | |
| del arg1204_1 | |
| del arg1205_1 | |
| del arg1206_1 | |
| del arg1207_1 | |
| del arg1208_1 | |
| del arg1209_1 | |
| del arg1210_1 | |
| del arg1211_1 | |
| del arg1212_1 | |
| del arg1213_1 | |
| del arg1214_1 | |
| del arg1215_1 | |
| del arg1216_1 | |
| del arg1217_1 | |
| del arg1218_1 | |
| del arg1219_1 | |
| del arg1220_1 | |
| del arg1221_1 | |
| del arg1222_1 | |
| del arg1223_1 | |
| del arg1224_1 | |
| del arg1225_1 | |
| del arg1226_1 | |
| del arg1227_1 | |
| del arg1228_1 | |
| del arg1229_1 | |
| del arg1230_1 | |
| del arg1231_1 | |
| del arg1232_1 | |
| del arg1233_1 | |
| del arg1234_1 | |
| del arg1235_1 | |
| del arg1236_1 | |
| del arg1237_1 | |
| del arg1238_1 | |
| del arg1239_1 | |
| del arg1240_1 | |
| del arg1241_1 | |
| del arg1242_1 | |
| del arg1243_1 | |
| del arg1244_1 | |
| del arg1245_1 | |
| del arg1246_1 | |
| del arg1247_1 | |
| del arg1248_1 | |
| del arg1249_1 | |
| del arg1250_1 | |
| del arg1251_1 | |
| del arg1252_1 | |
| del arg1253_1 | |
| del arg1254_1 | |
| del arg1255_1 | |
| del arg1256_1 | |
| del arg1257_1 | |
| del arg1258_1 | |
| del arg1259_1 | |
| del arg1260_1 | |
| del arg1261_1 | |
| del arg1262_1 | |
| del arg1263_1 | |
| del arg1264_1 | |
| del arg1265_1 | |
| del arg1266_1 | |
| del arg1267_1 | |
| del arg1268_1 | |
| del arg1269_1 | |
| del arg1270_1 | |
| del arg1271_1 | |
| del arg1272_1 | |
| del arg1273_1 | |
| del arg1274_1 | |
| del arg1275_1 | |
| del arg1276_1 | |
| del arg1277_1 | |
| del arg1278_1 | |
| del arg1279_1 | |
| del arg1280_1 | |
| del arg1281_1 | |
| del arg1282_1 | |
| del arg1283_1 | |
| del arg1284_1 | |
| del arg1285_1 | |
| del arg1286_1 | |
| del arg1287_1 | |
| del arg1288_1 | |
| del arg1289_1 | |
| del arg1290_1 | |
| del arg1291_1 | |
| del arg1292_1 | |
| del arg1293_1 | |
| del arg1294_1 | |
| del arg1295_1 | |
| del arg1296_1 | |
| del arg1297_1 | |
| del arg1298_1 | |
| del arg1299_1 | |
| del arg1300_1 | |
| del arg1301_1 | |
| del arg1302_1 | |
| del arg1303_1 | |
| del arg1304_1 | |
| del arg1305_1 | |
| del arg1306_1 | |
| del arg1307_1 | |
| del arg1308_1 | |
| del arg1309_1 | |
| del arg1310_1 | |
| del arg1311_1 | |
| del arg1312_1 | |
| del arg1313_1 | |
| del arg1314_1 | |
| del arg1315_1 | |
| del arg1316_1 | |
| del arg1317_1 | |
| del arg1318_1 | |
| del arg1319_1 | |
| del arg1320_1 | |
| del arg1321_1 | |
| del arg1322_1 | |
| del arg1323_1 | |
| del arg1324_1 | |
| del arg1325_1 | |
| del arg1326_1 | |
| del arg1327_1 | |
| del arg1328_1 | |
| del arg1329_1 | |
| del arg1330_1 | |
| del arg1331_1 | |
| del arg1332_1 | |
| del arg1333_1 | |
| del arg1334_1 | |
| del arg1335_1 | |
| del arg1336_1 | |
| del arg1337_1 | |
| del arg1338_1 | |
| del arg1339_1 | |
| del arg1340_1 | |
| del arg1341_1 | |
| del arg1342_1 | |
| del arg1343_1 | |
| del arg1344_1 | |
| del arg1345_1 | |
| del arg1346_1 | |
| del arg1347_1 | |
| del arg1348_1 | |
| del arg1349_1 | |
| del arg1350_1 | |
| del arg1351_1 | |
| del arg1352_1 | |
| del arg1353_1 | |
| del arg1354_1 | |
| del arg1355_1 | |
| del arg1356_1 | |
| del arg1357_1 | |
| del arg1358_1 | |
| del arg1359_1 | |
| del arg1360_1 | |
| del arg1361_1 | |
| del arg1362_1 | |
| del arg1363_1 | |
| del arg1364_1 | |
| del arg1365_1 | |
| del arg1366_1 | |
| del arg1367_1 | |
| del arg1368_1 | |
| del arg1369_1 | |
| del arg1370_1 | |
| del arg1371_1 | |
| del arg1372_1 | |
| del arg1373_1 | |
| del arg1374_1 | |
| del arg1375_1 | |
| del arg1376_1 | |
| del arg1377_1 | |
| del arg1378_1 | |
| del arg1379_1 | |
| del arg1380_1 | |
| del arg1381_1 | |
| del arg1382_1 | |
| del arg1383_1 | |
| del arg1384_1 | |
| del arg1385_1 | |
| del arg1386_1 | |
| del arg1387_1 | |
| del arg1388_1 | |
| del arg1389_1 | |
| del arg1390_1 | |
| del arg1391_1 | |
| del arg1392_1 | |
| del arg1393_1 | |
| del arg1394_1 | |
| del arg1395_1 | |
| del arg1396_1 | |
| del arg1397_1 | |
| del arg1398_1 | |
| del arg1399_1 | |
| del arg1400_1 | |
| del arg1401_1 | |
| del arg1402_1 | |
| del arg1403_1 | |
| del arg1404_1 | |
| del arg1405_1 | |
| del arg1406_1 | |
| del arg1407_1 | |
| del arg1408_1 | |
| del arg1409_1 | |
| del arg1410_1 | |
| del arg1411_1 | |
| del arg1412_1 | |
| del arg1413_1 | |
| del arg1414_1 | |
| del arg1415_1 | |
| del arg1416_1 | |
| del arg1417_1 | |
| del arg1418_1 | |
| del arg1419_1 | |
| del arg1420_1 | |
| del arg1421_1 | |
| del arg1422_1 | |
| del arg1423_1 | |
| del arg1424_1 | |
| del arg1425_1 | |
| del arg1426_1 | |
| del arg1427_1 | |
| del arg1428_1 | |
| del arg1429_1 | |
| del arg1430_1 | |
| del arg1431_1 | |
| del arg1432_1 | |
| del arg1433_1 | |
| del arg1434_1 | |
| del arg1435_1 | |
| del arg1436_1 | |
| del arg1437_1 | |
| del arg1438_1 | |
| del arg1439_1 | |
| del arg1440_1 | |
| del arg1441_1 | |
| del arg1442_1 | |
| del arg1443_1 | |
| del arg1444_1 | |
| del arg1445_1 | |
| del arg1446_1 | |
| del arg1447_1 | |
| del arg1448_1 | |
| del arg1449_1 | |
| del arg1450_1 | |
| del arg1451_1 | |
| del arg1452_1 | |
| del arg1453_1 | |
| del arg1454_1 | |
| del arg1455_1 | |
| del arg1456_1 | |
| del arg1457_1 | |
| del arg1458_1 | |
| del arg1459_1 | |
| del arg1460_1 | |
| del arg1461_1 | |
| del arg1462_1 | |
| del arg1463_1 | |
| del arg1464_1 | |
| del arg1465_1 | |
| del arg1466_1 | |
| del arg1467_1 | |
| del arg1468_1 | |
| del arg1469_1 | |
| del arg1470_1 | |
| del arg1471_1 | |
| del arg1472_1 | |
| del arg1473_1 | |
| del arg1474_1 | |
| del arg1475_1 | |
| del arg1476_1 | |
| del arg1477_1 | |
| del arg1478_1 | |
| del arg1479_1 | |
| del arg1480_1 | |
| del arg1481_1 | |
| del arg1482_1 | |
| del arg1483_1 | |
| del arg1484_1 | |
| del arg1485_1 | |
| del arg1486_1 | |
| del arg1487_1 | |
| del arg1488_1 | |
| del arg1489_1 | |
| del arg1490_1 | |
| del arg1491_1 | |
| del arg1492_1 | |
| del arg1493_1 | |
| del arg1494_1 | |
| del arg1495_1 | |
| del arg1496_1 | |
| del arg1497_1 | |
| del arg1498_1 | |
| del arg1499_1 | |
| del arg1500_1 | |
| del arg1501_1 | |
| del arg1502_1 | |
| del arg1503_1 | |
| del arg1504_1 | |
| del arg1505_1 | |
| del arg1506_1 | |
| del arg1507_1 | |
| del arg1508_1 | |
| del arg1509_1 | |
| del arg1510_1 | |
| del arg1511_1 | |
| del arg1512_1 | |
| del arg1513_1 | |
| del arg1514_1 | |
| del arg1515_1 | |
| del arg1516_1 | |
| del arg1517_1 | |
| del arg1518_1 | |
| del arg1519_1 | |
| del arg1520_1 | |
| del arg1521_1 | |
| del arg1522_1 | |
| del arg1523_1 | |
| del arg1524_1 | |
| del arg1525_1 | |
| del arg1526_1 | |
| del arg1527_1 | |
| del arg1528_1 | |
| del arg1529_1 | |
| del arg1530_1 | |
| del arg1531_1 | |
| del arg1532_1 | |
| del arg1533_1 | |
| del arg1534_1 | |
| del arg1535_1 | |
| del arg1536_1 | |
| del arg1537_1 | |
| del arg1538_1 | |
| del arg1539_1 | |
| del arg1540_1 | |
| del arg1541_1 | |
| del arg1542_1 | |
| del arg1543_1 | |
| del arg1544_1 | |
| del arg1545_1 | |
| del arg1546_1 | |
| del arg1547_1 | |
| del arg1548_1 | |
| del arg1549_1 | |
| del arg1550_1 | |
| del arg1551_1 | |
| del arg1552_1 | |
| del arg1553_1 | |
| del arg1554_1 | |
| del arg1555_1 | |
| del arg1556_1 | |
| del arg1557_1 | |
| del arg1558_1 | |
| del arg1559_1 | |
| del arg1560_1 | |
| del arg1561_1 | |
| del arg1562_1 | |
| del arg1563_1 | |
| del arg1564_1 | |
| del arg1565_1 | |
| del arg1566_1 | |
| del arg1567_1 | |
| del arg1568_1 | |
| del arg1569_1 | |
| del arg1570_1 | |
| del arg1571_1 | |
| del arg1572_1 | |
| del arg1573_1 | |
| del arg1574_1 | |
| del arg1575_1 | |
| del arg1576_1 | |
| del arg1577_1 | |
| del arg1578_1 | |
| del arg1579_1 | |
| del arg1580_1 | |
| del arg1581_1 | |
| del arg1582_1 | |
| del arg1583_1 | |
| del arg1584_1 | |
| del arg1585_1 | |
| del arg1586_1 | |
| del arg1587_1 | |
| del arg1588_1 | |
| del arg1589_1 | |
| del arg1590_1 | |
| del arg1591_1 | |
| del arg1592_1 | |
| del arg1593_1 | |
| del arg1594_1 | |
| del arg1595_1 | |
| del arg1596_1 | |
| del arg1597_1 | |
| del arg1598_1 | |
| del arg1599_1 | |
| del arg1600_1 | |
| del arg1601_1 | |
| del arg1602_1 | |
| del arg1603_1 | |
| del arg1604_1 | |
| del arg1605_1 | |
| del arg1606_1 | |
| del arg1607_1 | |
| del arg1608_1 | |
| del arg1609_1 | |
| del arg1610_1 | |
| del arg1611_1 | |
| del arg1612_1 | |
| del arg1613_1 | |
| del arg1614_1 | |
| del arg1615_1 | |
| del arg1616_1 | |
| del arg1617_1 | |
| del arg1618_1 | |
| del arg1619_1 | |
| del arg1620_1 | |
| del arg1621_1 | |
| del arg1622_1 | |
| del arg1623_1 | |
| del arg1624_1 | |
| del arg1625_1 | |
| del arg1626_1 | |
| del arg1627_1 | |
| del arg1628_1 | |
| del arg1629_1 | |
| del arg1630_1 | |
| del arg1631_1 | |
| del arg1632_1 | |
| del arg1633_1 | |
| del arg1634_1 | |
| del arg1635_1 | |
| del arg1636_1 | |
| del arg1637_1 | |
| del arg1638_1 | |
| del arg1639_1 | |
| del arg1640_1 | |
| del arg1641_1 | |
| del arg1642_1 | |
| del arg1643_1 | |
| del arg1644_1 | |
| del arg1645_1 | |
| del arg1646_1 | |
| del arg1647_1 | |
| del arg1648_1 | |
| del arg1649_1 | |
| del arg1650_1 | |
| del arg1651_1 | |
| del arg1652_1 | |
| del arg1653_1 | |
| del arg1654_1 | |
| del arg1655_1 | |
| del arg1656_1 | |
| del arg1657_1 | |
| del arg1658_1 | |
| del arg1659_1 | |
| del arg1660_1 | |
| del arg1661_1 | |
| del arg1662_1 | |
| del arg1663_1 | |
| del arg1664_1 | |
| del arg1665_1 | |
| del arg1666_1 | |
| del arg1667_1 | |
| del arg1668_1 | |
| del arg1669_1 | |
| del arg1670_1 | |
| del arg1671_1 | |
| del arg1672_1 | |
| del arg1673_1 | |
| del arg1674_1 | |
| del arg1675_1 | |
| del arg1676_1 | |
| del arg1677_1 | |
| del arg1678_1 | |
| del arg1679_1 | |
| del arg1680_1 | |
| del arg1681_1 | |
| del arg1682_1 | |
| del arg1683_1 | |
| del arg1684_1 | |
| del arg1685_1 | |
| del arg1686_1 | |
| del arg1687_1 | |
| del arg1688_1 | |
| del arg1689_1 | |
| del arg1690_1 | |
| del arg1691_1 | |
| del arg1692_1 | |
| del arg1693_1 | |
| del arg1694_1 | |
| del arg1695_1 | |
| del arg1696_1 | |
| del arg1697_1 | |
| del arg1698_1 | |
| del arg1699_1 | |
| del arg1700_1 | |
| del arg1701_1 | |
| del arg1702_1 | |
| del arg1703_1 | |
| del arg1704_1 | |
| del arg1705_1 | |
| del arg1706_1 | |
| del arg1707_1 | |
| del arg1708_1 | |
| del arg1709_1 | |
| del arg1710_1 | |
| del arg1711_1 | |
| del arg1712_1 | |
| del arg1713_1 | |
| del arg1714_1 | |
| del arg1715_1 | |
| del arg1716_1 | |
| del arg1717_1 | |
| del arg1718_1 | |
| del arg1719_1 | |
| del arg1720_1 | |
| del arg1721_1 | |
| del arg1722_1 | |
| del arg1723_1 | |
| del arg1724_1 | |
| del arg1725_1 | |
| del arg1726_1 | |
| del arg1727_1 | |
| del arg1728_1 | |
| del arg1729_1 | |
| del arg1730_1 | |
| del arg1731_1 | |
| del arg1732_1 | |
| del arg1733_1 | |
| del arg1734_1 | |
| del arg1735_1 | |
| del arg1736_1 | |
| del arg1737_1 | |
| del arg1738_1 | |
| del arg1739_1 | |
| del arg1740_1 | |
| del arg1741_1 | |
| del arg1742_1 | |
| del arg1743_1 | |
| del arg1744_1 | |
| del arg1745_1 | |
| del arg1746_1 | |
| del arg1747_1 | |
| del arg1748_1 | |
| del arg1749_1 | |
| del arg1750_1 | |
| del arg1751_1 | |
| del arg1752_1 | |
| del arg1753_1 | |
| del arg1754_1 | |
| del arg1755_1 | |
| del arg1756_1 | |
| del arg1757_1 | |
| del arg1758_1 | |
| del arg1759_1 | |
| del arg1760_1 | |
| del arg1761_1 | |
| del arg1762_1 | |
| del arg1763_1 | |
| del arg1764_1 | |
| del arg1765_1 | |
| del arg1766_1 | |
| del arg1767_1 | |
| del arg1768_1 | |
| del arg1769_1 | |
| del arg1770_1 | |
| del arg1771_1 | |
| del arg1772_1 | |
| del arg1773_1 | |
| del arg1774_1 | |
| del arg1775_1 | |
| del arg1776_1 | |
| del arg1777_1 | |
| del arg1778_1 | |
| del arg1779_1 | |
| del arg1780_1 | |
| del arg1781_1 | |
| del arg1782_1 | |
| del arg1783_1 | |
| del arg1784_1 | |
| del arg1785_1 | |
| del arg1786_1 | |
| del arg1787_1 | |
| del arg1788_1 | |
| del arg1789_1 | |
| del arg1790_1 | |
| del arg1791_1 | |
| del arg1792_1 | |
| del arg1793_1 | |
| del arg1794_1 | |
| del arg1795_1 | |
| del arg1796_1 | |
| del arg1797_1 | |
| del arg1798_1 | |
| del arg1799_1 | |
| del arg1800_1 | |
| del arg1801_1 | |
| del arg1802_1 | |
| del arg1803_1 | |
| del arg1804_1 | |
| del arg1805_1 | |
| del arg1806_1 | |
| del arg1807_1 | |
| del arg1808_1 | |
| del arg1809_1 | |
| del arg1810_1 | |
| del arg1811_1 | |
| del arg1812_1 | |
| del arg1813_1 | |
| del arg1814_1 | |
| del arg1815_1 | |
| del arg1816_1 | |
| del arg1817_1 | |
| del arg1818_1 | |
| del arg1819_1 | |
| del arg1820_1 | |
| del arg1821_1 | |
| del arg1822_1 | |
| del arg1823_1 | |
| del arg1824_1 | |
| del arg1825_1 | |
| del arg1826_1 | |
| del arg1827_1 | |
| del arg1828_1 | |
| del arg1829_1 | |
| del arg1830_1 | |
| del arg1831_1 | |
| del arg1832_1 | |
| del arg1833_1 | |
| del arg1834_1 | |
| del arg1835_1 | |
| del arg1836_1 | |
| del arg1837_1 | |
| del arg1838_1 | |
| del arg1839_1 | |
| del arg1840_1 | |
| del arg1841_1 | |
| del arg1842_1 | |
| del arg1843_1 | |
| del arg1844_1 | |
| del arg1845_1 | |
| del arg1846_1 | |
| del arg1847_1 | |
| del arg1848_1 | |
| del arg1849_1 | |
| del arg1850_1 | |
| del arg1851_1 | |
| del arg1852_1 | |
| del arg1853_1 | |
| del arg1854_1 | |
| del arg1855_1 | |
| del arg1856_1 | |
| del arg1857_1 | |
| del arg1858_1 | |
| del arg1859_1 | |
| del arg1860_1 | |
| del arg1861_1 | |
| del arg1862_1 | |
| del arg1863_1 | |
| del arg1864_1 | |
| del arg1865_1 | |
| del arg1866_1 | |
| del arg1867_1 | |
| del arg1868_1 | |
| del arg1869_1 | |
| del arg1870_1 | |
| del arg1871_1 | |
| del arg1872_1 | |
| del arg1873_1 | |
| del arg1874_1 | |
| del arg1875_1 | |
| del arg1876_1 | |
| del arg1877_1 | |
| del arg1878_1 | |
| del arg1879_1 | |
| del arg1880_1 | |
| del arg1881_1 | |
| del arg1882_1 | |
| del arg1883_1 | |
| del arg1884_1 | |
| del arg1885_1 | |
| del arg1886_1 | |
| del arg1887_1 | |
| del arg1888_1 | |
| del arg1889_1 | |
| del arg1890_1 | |
| del arg1891_1 | |
| del arg1892_1 | |
| del arg1893_1 | |
| del arg1894_1 | |
| del arg1895_1 | |
| del arg1896_1 | |
| del arg1897_1 | |
| del arg1898_1 | |
| del arg1899_1 | |
| del arg1900_1 | |
| del arg1901_1 | |
| del arg1902_1 | |
| del arg1903_1 | |
| del arg1904_1 | |
| del arg1905_1 | |
| del arg1906_1 | |
| del arg1907_1 | |
| del arg1908_1 | |
| del arg1909_1 | |
| del arg1910_1 | |
| del arg1911_1 | |
| del arg1912_1 | |
| del arg1913_1 | |
| del arg1914_1 | |
| del arg1915_1 | |
| del arg1916_1 | |
| del arg1917_1 | |
| del arg1918_1 | |
| del arg1919_1 | |
| del arg1920_1 | |
| del arg1921_1 | |
| del arg1922_1 | |
| del arg1923_1 | |
| del arg1924_1 | |
| del arg1925_1 | |
| del arg1926_1 | |
| del arg1927_1 | |
| del arg1928_1 | |
| del arg1929_1 | |
| del arg1930_1 | |
| del arg1931_1 | |
| del arg1932_1 | |
| del arg1933_1 | |
| del arg1934_1 | |
| del arg1935_1 | |
| del arg1936_1 | |
| del arg1937_1 | |
| del arg1938_1 | |
| del arg1939_1 | |
| del arg1940_1 | |
| del arg1941_1 | |
| del arg1942_1 | |
| del arg1943_1 | |
| del arg1944_1 | |
| del arg1945_1 | |
| del arg1946_1 | |
| del arg1947_1 | |
| del arg1948_1 | |
| del arg1949_1 | |
| del arg1950_1 | |
| del arg1951_1 | |
| del arg1952_1 | |
| del arg1953_1 | |
| del arg1954_1 | |
| del arg1955_1 | |
| del arg1956_1 | |
| del arg1957_1 | |
| del arg1958_1 | |
| del arg1959_1 | |
| del arg1960_1 | |
| del arg1961_1 | |
| del arg1962_1 | |
| del arg1963_1 | |
| del arg1964_1 | |
| del arg1965_1 | |
| del arg1966_1 | |
| del arg1967_1 | |
| del arg1968_1 | |
| del arg1969_1 | |
| del arg1970_1 | |
| del arg1971_1 | |
| del arg1972_1 | |
| del arg1973_1 | |
| del arg1974_1 | |
| del arg1975_1 | |
| del arg1976_1 | |
| del arg1977_1 | |
| del arg1978_1 | |
| del arg1979_1 | |
| del arg1980_1 | |
| del arg1981_1 | |
| del arg1982_1 | |
| del arg1983_1 | |
| del arg1984_1 | |
| del arg1985_1 | |
| del arg1986_1 | |
| del arg1987_1 | |
| del arg1988_1 | |
| del arg1989_1 | |
| del arg1990_1 | |
| del arg1991_1 | |
| del arg1992_1 | |
| del arg1993_1 | |
| del arg1994_1 | |
| del arg1995_1 | |
| del arg1996_1 | |
| del arg1997_1 | |
| del arg1998_1 | |
| del arg1999_1 | |
| del arg2000_1 | |
| del arg2001_1 | |
| del arg2002_1 | |
| del arg2003_1 | |
| del arg2004_1 | |
| del arg2005_1 | |
| del arg2006_1 | |
| del arg2007_1 | |
| del arg2008_1 | |
| del arg2009_1 | |
| del arg2010_1 | |
| del arg2011_1 | |
| del arg2012_1 | |
| del arg2013_1 | |
| del arg2014_1 | |
| del arg2015_1 | |
| del arg2016_1 | |
| del arg2017_1 | |
| del arg2018_1 | |
| del arg2019_1 | |
| del arg2020_1 | |
| del arg2021_1 | |
| del arg2022_1 | |
| del arg2023_1 | |
| del arg2024_1 | |
| del arg2025_1 | |
| del arg2026_1 | |
| del arg2027_1 | |
| del arg2028_1 | |
| del arg2029_1 | |
| del arg2030_1 | |
| del arg2031_1 | |
| del arg2032_1 | |
| del arg2033_1 | |
| del arg2034_1 | |
| del arg2035_1 | |
| del arg2036_1 | |
| del arg2037_1 | |
| del arg2038_1 | |
| del arg2039_1 | |
| del arg2040_1 | |
| del arg2041_1 | |
| del arg2042_1 | |
| del arg2043_1 | |
| del arg2044_1 | |
| del arg2045_1 | |
| del arg2046_1 | |
| del arg2047_1 | |
| del arg2048_1 | |
| del arg2049_1 | |
| del arg2050_1 | |
| del arg2051_1 | |
| del arg2052_1 | |
| del arg2053_1 | |
| del arg2054_1 | |
| del arg2055_1 | |
| del arg2056_1 | |
| del arg2057_1 | |
| del arg2058_1 | |
| del arg2059_1 | |
| del arg2060_1 | |
| del arg2061_1 | |
| del arg2062_1 | |
| del arg2063_1 | |
| del arg2064_1 | |
| del arg2065_1 | |
| del arg2066_1 | |
| del arg2067_1 | |
| del arg2068_1 | |
| del arg2069_1 | |
| del arg2070_1 | |
| del arg2071_1 | |
| del arg2072_1 | |
| del arg2073_1 | |
| del arg2074_1 | |
| del arg2075_1 | |
| del arg2076_1 | |
| del arg2077_1 | |
| del arg2078_1 | |
| del arg2079_1 | |
| del arg2080_1 | |
| del arg2081_1 | |
| del arg2082_1 | |
| del arg2083_1 | |
| del arg2084_1 | |
| del arg2085_1 | |
| del arg2086_1 | |
| del arg2087_1 | |
| del arg2088_1 | |
| del arg2089_1 | |
| del arg2090_1 | |
| del arg2091_1 | |
| del arg2092_1 | |
| del arg2093_1 | |
| del arg2094_1 | |
| del arg2095_1 | |
| del arg2096_1 | |
| del arg2097_1 | |
| del arg2098_1 | |
| del arg2099_1 | |
| del arg2100_1 | |
| del arg2101_1 | |
| del arg2102_1 | |
| del arg2103_1 | |
| del arg2104_1 | |
| del arg2105_1 | |
| del arg2106_1 | |
| del arg2107_1 | |
| del arg2108_1 | |
| del arg2109_1 | |
| del arg2110_1 | |
| del arg2111_1 | |
| del arg2112_1 | |
| del arg2113_1 | |
| del arg2114_1 | |
| del arg2115_1 | |
| del arg2116_1 | |
| del arg2117_1 | |
| del arg2118_1 | |
| del arg2119_1 | |
| del arg2120_1 | |
| del arg2121_1 | |
| del arg2122_1 | |
| del arg2123_1 | |
| del arg2124_1 | |
| del arg2125_1 | |
| del arg2126_1 | |
| del arg2127_1 | |
| del arg2128_1 | |
| del arg2129_1 | |
| del arg2130_1 | |
| del arg2131_1 | |
| del arg2132_1 | |
| del arg2133_1 | |
| del arg2134_1 | |
| del arg2135_1 | |
| del arg2136_1 | |
| del arg2137_1 | |
| del arg2138_1 | |
| del arg2139_1 | |
| del arg2140_1 | |
| del arg2141_1 | |
| del arg2142_1 | |
| del arg2143_1 | |
| del arg2144_1 | |
| del arg2145_1 | |
| del arg2146_1 | |
| del arg2147_1 | |
| del arg2148_1 | |
| del arg2149_1 | |
| del arg2150_1 | |
| del arg2151_1 | |
| del arg2152_1 | |
| del arg2153_1 | |
| del arg2154_1 | |
| del arg2155_1 | |
| del arg2156_1 | |
| del arg2157_1 | |
| del arg2158_1 | |
| del arg2159_1 | |
| del arg2160_1 | |
| del arg2161_1 | |
| del arg2162_1 | |
| del arg2163_1 | |
| del arg2164_1 | |
| del arg2165_1 | |
| del arg2166_1 | |
| del arg2167_1 | |
| del arg2168_1 | |
| del arg2169_1 | |
| del arg2170_1 | |
| del arg2171_1 | |
| del arg2172_1 | |
| del arg2173_1 | |
| del arg2174_1 | |
| del arg2175_1 | |
| del arg2176_1 | |
| del arg2177_1 | |
| del arg2178_1 | |
| del arg2179_1 | |
| del arg2180_1 | |
| del arg2181_1 | |
| del arg2182_1 | |
| del arg2183_1 | |
| return () | |
| def benchmark_compiled_module(): | |
| from torch._dynamo.testing import rand_strided | |
| from torch._inductor.utils import print_performance | |
| arg0_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg2_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg3_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg4_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg5_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg6_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg7_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg8_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg9_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg10_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg11_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg12_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg13_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg14_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg15_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg16_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg17_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg18_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg19_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg20_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg21_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg22_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg23_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg24_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg25_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg26_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg27_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg28_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg29_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg30_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg31_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg32_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg33_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg34_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg35_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg36_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg37_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg38_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg39_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg40_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg41_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg42_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg43_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg44_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg45_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg46_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg47_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg48_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg49_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg50_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg51_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg52_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg53_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg54_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg55_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg56_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg57_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg58_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg59_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg60_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg61_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg62_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg63_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg64_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg65_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg66_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg67_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg68_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg69_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg70_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg71_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg72_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg73_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg74_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg75_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg76_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg77_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg78_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg79_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg80_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg81_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg82_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg83_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg84_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg85_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg86_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg87_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg88_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg89_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg90_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg91_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg92_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg93_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg94_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg95_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg96_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg97_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg98_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg99_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg100_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg101_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg102_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg103_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg104_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg105_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg106_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg107_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg108_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg109_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg110_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg111_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg112_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg113_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg114_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg115_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg116_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg117_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg118_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg119_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg120_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg121_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg122_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg123_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg124_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg125_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg126_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg127_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg128_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg129_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg130_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg131_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg132_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg133_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg134_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg135_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg136_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg137_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg138_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg139_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg140_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg141_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg142_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg143_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg144_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg145_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg146_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg147_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg148_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg149_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg150_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg151_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg152_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg153_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg154_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg155_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg156_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg157_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg158_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg159_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg160_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg161_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg162_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg163_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg164_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg165_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg166_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg167_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg168_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg169_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg170_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg171_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg172_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg173_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg174_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg175_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg176_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg177_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg178_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg179_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg180_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg181_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg182_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg183_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg184_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg185_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg186_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg187_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg188_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg189_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg190_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg191_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg192_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg193_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg194_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg195_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg196_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg197_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg198_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg199_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg200_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg201_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg202_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg203_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg204_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg205_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg206_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg207_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg208_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg209_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg210_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg211_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg212_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg213_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg214_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg215_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg216_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg217_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg218_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg219_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg220_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg221_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg222_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg223_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg224_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg225_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg226_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg227_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg228_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg229_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg230_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg231_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg232_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg233_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg234_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg235_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg236_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg237_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg238_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg239_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg240_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg241_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg242_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg243_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg244_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg245_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg246_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg247_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg248_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg249_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg250_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg251_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg252_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg253_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg254_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg255_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg256_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg257_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg258_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg259_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg260_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg261_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg262_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg263_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg264_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg265_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg266_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg267_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg268_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg269_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg270_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg271_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg272_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg273_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg274_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg275_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg276_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg277_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg278_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg279_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg280_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg281_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg282_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg283_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg284_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg285_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg286_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg287_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg288_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg289_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg290_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg291_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg292_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg293_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg294_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg295_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg296_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg297_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg298_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg299_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg300_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg301_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg302_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg303_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg304_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg305_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg306_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg307_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg308_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg309_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg310_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg311_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg312_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg313_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg314_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg315_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg316_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg317_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg318_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg319_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg320_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg321_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg322_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg323_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg324_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg325_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg326_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg327_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg328_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg329_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg330_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg331_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg332_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg333_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg334_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg335_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg336_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg337_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg338_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg339_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg340_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg341_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg342_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg343_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg344_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg345_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg346_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg347_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg348_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg349_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg350_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg351_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg352_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg353_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg354_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg355_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg356_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg357_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg358_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg359_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg360_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg361_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg362_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg363_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg364_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg365_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg366_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg367_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg368_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg369_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg370_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg371_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg372_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg373_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg374_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg375_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg376_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg377_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg378_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg379_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg380_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg381_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg382_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg383_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg384_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg385_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg386_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg387_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg388_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg389_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg390_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg391_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg392_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg393_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg394_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg395_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg396_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg397_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg398_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg399_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg400_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg401_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg402_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg403_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg404_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg405_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg406_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg407_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg408_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg409_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg410_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg411_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg412_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg413_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg414_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg415_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg416_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg417_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg418_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg419_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg420_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg421_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg422_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg423_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg424_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg425_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg426_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg427_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg428_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg429_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg430_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg431_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg432_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg433_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg434_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg435_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg436_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg437_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg438_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg439_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg440_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg441_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg442_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg443_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg444_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg445_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg446_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg447_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg448_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg449_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg450_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg451_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg452_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg453_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg454_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg455_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg456_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg457_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg458_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg459_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg460_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg461_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg462_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg463_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg464_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg465_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg466_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg467_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg468_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg469_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg470_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg471_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg472_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg473_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg474_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg475_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg476_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg477_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg478_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg479_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg480_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg481_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg482_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg483_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg484_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg485_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg486_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg487_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg488_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg489_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg490_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg491_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg492_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg493_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg494_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg495_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg496_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg497_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg498_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg499_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg500_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg501_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg502_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg503_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg504_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg505_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg506_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg507_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg508_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg509_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg510_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg511_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg512_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg513_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg514_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg515_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg516_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg517_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg518_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg519_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg520_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg521_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg522_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg523_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg524_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg525_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg526_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg527_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg528_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg529_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg530_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg531_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg532_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg533_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg534_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg535_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg536_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg537_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg538_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg539_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg540_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg541_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg542_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg543_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg544_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg545_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg546_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg547_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg548_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg549_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg550_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg551_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg552_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg553_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg554_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg555_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg556_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg557_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg558_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg559_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg560_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg561_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg562_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg563_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg564_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg565_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg566_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg567_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg568_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg569_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg570_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg571_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg572_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg573_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg574_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg575_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg576_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg577_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg578_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg579_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg580_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg581_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg582_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg583_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg584_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg585_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg586_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg587_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg588_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg589_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg590_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg591_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg592_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg593_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg594_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg595_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg596_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg597_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg598_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg599_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg600_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg601_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg602_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg603_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg604_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg605_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg606_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg607_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg608_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg609_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg610_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg611_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg612_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg613_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg614_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg615_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg616_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg617_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg618_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg619_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg620_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg621_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg622_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg623_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg624_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg625_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg626_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg627_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg628_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg629_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg630_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg631_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg632_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg633_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg634_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg635_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg636_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg637_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg638_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg639_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg640_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg641_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg642_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg643_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg644_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg645_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg646_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg647_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg648_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg649_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg650_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg651_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg652_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg653_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg654_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg655_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg656_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg657_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg658_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg659_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg660_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg661_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg662_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg663_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg664_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg665_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg666_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg667_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg668_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg669_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg670_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg671_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg672_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg673_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg674_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg675_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg676_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg677_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg678_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg679_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg680_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg681_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg682_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg683_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg684_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg685_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg686_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg687_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg688_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg689_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg690_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg691_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg692_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg693_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg694_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg695_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg696_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg697_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg698_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg699_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg700_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg701_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg702_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg703_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg704_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg705_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg706_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg707_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg708_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg709_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg710_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg711_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg712_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg713_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg714_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg715_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg716_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg717_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg718_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg719_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg720_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg721_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg722_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg723_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg724_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg725_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg726_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg727_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg728_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg729_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg730_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg731_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg732_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg733_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg734_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg735_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg736_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg737_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg738_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg739_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg740_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg741_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg742_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg743_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg744_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg745_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg746_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg747_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg748_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg749_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg750_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg751_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg752_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg753_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg754_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg755_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg756_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg757_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg758_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg759_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg760_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg761_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg762_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg763_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg764_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg765_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg766_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg767_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg768_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg769_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg770_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg771_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg772_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg773_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg774_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg775_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg776_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg777_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg778_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg779_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg780_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg781_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg782_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg783_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg784_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg785_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg786_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg787_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg788_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg789_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg790_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg791_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg792_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg793_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg794_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg795_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg796_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg797_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg798_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg799_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg800_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg801_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg802_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg803_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg804_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg805_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg806_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg807_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg808_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg809_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg810_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg811_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg812_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg813_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg814_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg815_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg816_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg817_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg818_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg819_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg820_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg821_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg822_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg823_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg824_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg825_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg826_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg827_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg828_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg829_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg830_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg831_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg832_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg833_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg834_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg835_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg836_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg837_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg838_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg839_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg840_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg841_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg842_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg843_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg844_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg845_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg846_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg847_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg848_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg849_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg850_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg851_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg852_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg853_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg854_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg855_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg856_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg857_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg858_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg859_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg860_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg861_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg862_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg863_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg864_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg865_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg866_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg867_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg868_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg869_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg870_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg871_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg872_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg873_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg874_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg875_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg876_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg877_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg878_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg879_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg880_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg881_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg882_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg883_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg884_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg885_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg886_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg887_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg888_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg889_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg890_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg891_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg892_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg893_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg894_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg895_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg896_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg897_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg898_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg899_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg900_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg901_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg902_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg903_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg904_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg905_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg906_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg907_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg908_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg909_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg910_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg911_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg912_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg913_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg914_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg915_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg916_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg917_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg918_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg919_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg920_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg921_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg922_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg923_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg924_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg925_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg926_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg927_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg928_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg929_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg930_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg931_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg932_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg933_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg934_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg935_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg936_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg937_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg938_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg939_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg940_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg941_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg942_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg943_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg944_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg945_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg946_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg947_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg948_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg949_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg950_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg951_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg952_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg953_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg954_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg955_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg956_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg957_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg958_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg959_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg960_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg961_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg962_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg963_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg964_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg965_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg966_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg967_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg968_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg969_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg970_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg971_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg972_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg973_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg974_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg975_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg976_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg977_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg978_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg979_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg980_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg981_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg982_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg983_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg984_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg985_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg986_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg987_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg988_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg989_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg990_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg991_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg992_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg993_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg994_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg995_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg996_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg997_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg998_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg999_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1000_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1001_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1002_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1003_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1004_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1005_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1006_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1007_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1008_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1009_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1010_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1011_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1012_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1013_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1014_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1015_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1016_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1017_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1018_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1019_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1020_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1021_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1022_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1023_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1024_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1025_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1026_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1027_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1028_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1029_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1030_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1031_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1032_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1033_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1034_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1035_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1036_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1037_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1038_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1039_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1040_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1041_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1042_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1043_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1044_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1045_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1046_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1047_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1048_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1049_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1050_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1051_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1052_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1053_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1054_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1055_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1056_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1057_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1058_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1059_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1060_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1061_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1062_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1063_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1064_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1065_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1066_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1067_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1068_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1069_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1070_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1071_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1072_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1073_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1074_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1075_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1076_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1077_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1078_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1079_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1080_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1081_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1082_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1083_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1084_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1085_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1086_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1087_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1088_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1089_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1090_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1091_1 = rand_strided((64, 3, 7, 7), (147, 49, 7, 1), device='cuda:0', dtype=torch.float32) | |
| arg1092_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1093_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1094_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1095_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1096_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1097_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1098_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1099_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1100_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1101_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1102_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1103_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1104_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1105_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1106_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1107_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1108_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1109_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1110_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1111_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1112_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1113_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1114_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1115_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1116_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1117_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1118_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1119_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1120_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1121_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1122_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1123_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1124_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1125_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1126_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1127_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1128_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1129_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1130_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1131_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1132_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1133_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1134_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1135_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1136_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1137_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1138_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1139_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1140_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1141_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1142_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1143_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1144_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1145_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1146_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1147_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1148_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1149_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1150_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1151_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1152_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1153_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1154_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1155_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1156_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1157_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1158_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1159_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1160_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1161_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1162_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1163_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1164_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1165_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1166_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1167_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1168_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1169_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1170_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1171_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1172_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1173_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1174_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1175_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1176_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1177_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1178_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1179_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1180_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1181_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1182_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1183_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1184_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1185_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1186_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1187_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1188_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1189_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1190_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1191_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1192_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1193_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1194_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1195_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1196_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1197_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1198_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1199_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1200_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1201_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1202_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1203_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1204_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1205_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1206_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1207_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1208_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1209_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1210_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1211_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1212_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1213_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1214_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1215_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1216_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1217_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1218_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1219_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1220_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1221_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1222_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1223_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1224_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1225_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1226_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1227_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1228_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1229_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1230_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1231_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1232_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1233_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1234_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1235_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1236_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1237_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1238_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1239_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1240_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1241_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1242_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1243_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1244_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1245_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1246_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1247_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1248_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1249_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1250_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1251_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1252_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1253_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1254_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1255_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1256_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1257_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1258_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1259_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1260_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1261_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1262_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1263_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1264_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1265_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1266_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1267_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1268_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1269_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1270_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1271_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1272_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1273_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1274_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1275_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1276_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1277_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1278_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1279_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1280_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1281_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1282_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1283_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1284_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1285_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1286_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1287_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1288_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1289_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1290_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1291_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1292_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1293_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1294_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1295_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1296_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1297_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1298_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1299_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1300_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1301_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1302_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1303_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1304_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1305_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1306_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1307_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1308_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1309_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1310_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1311_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1312_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1313_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1314_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1315_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1316_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1317_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1318_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1319_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1320_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1321_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1322_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1323_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1324_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1325_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1326_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1327_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1328_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1329_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1330_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1331_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1332_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1333_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1334_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1335_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1336_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1337_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1338_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1339_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1340_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1341_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1342_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1343_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1344_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1345_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1346_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1347_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1348_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1349_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1350_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1351_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1352_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1353_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1354_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1355_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1356_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1357_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1358_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1359_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1360_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1361_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1362_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1363_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1364_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1365_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1366_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1367_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1368_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1369_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1370_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1371_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1372_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1373_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1374_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1375_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1376_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1377_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1378_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1379_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1380_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1381_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1382_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1383_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1384_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1385_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1386_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1387_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1388_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1389_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1390_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1391_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1392_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1393_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1394_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1395_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1396_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1397_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1398_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1399_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1400_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1401_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1402_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1403_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1404_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1405_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1406_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1407_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1408_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1409_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1410_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1411_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1412_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1413_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1414_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1415_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1416_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1417_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1418_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1419_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1420_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1421_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1422_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1423_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1424_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1425_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1426_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1427_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1428_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1429_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1430_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1431_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1432_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1433_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1434_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1435_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1436_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1437_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1438_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1439_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1440_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1441_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1442_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1443_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1444_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1445_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1446_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1447_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1448_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1449_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1450_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1451_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1452_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1453_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1454_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1455_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1456_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1457_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1458_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1459_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1460_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1461_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1462_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1463_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1464_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1465_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1466_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1467_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1468_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1469_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1470_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1471_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1472_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1473_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1474_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1475_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1476_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1477_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1478_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1479_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1480_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1481_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1482_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1483_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1484_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1485_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1486_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1487_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1488_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1489_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1490_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1491_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1492_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1493_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1494_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1495_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1496_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1497_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1498_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1499_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1500_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1501_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1502_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1503_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1504_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1505_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1506_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1507_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1508_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1509_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1510_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1511_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1512_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1513_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1514_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1515_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1516_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1517_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1518_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1519_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1520_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1521_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1522_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1523_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1524_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1525_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1526_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1527_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1528_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1529_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1530_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1531_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1532_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1533_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1534_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1535_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1536_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1537_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1538_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1539_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1540_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1541_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1542_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1543_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1544_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1545_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1546_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1547_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1548_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1549_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1550_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1551_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1552_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1553_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1554_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1555_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1556_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1557_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1558_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1559_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1560_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1561_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1562_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1563_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1564_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1565_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1566_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1567_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1568_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1569_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1570_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1571_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1572_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1573_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1574_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1575_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1576_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1577_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1578_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1579_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1580_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1581_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1582_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1583_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1584_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1585_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1586_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1587_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1588_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1589_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1590_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1591_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1592_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1593_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1594_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1595_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1596_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1597_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1598_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1599_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1600_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1601_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1602_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1603_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1604_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1605_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1606_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1607_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1608_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1609_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1610_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1611_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1612_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1613_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1614_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1615_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1616_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1617_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1618_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1619_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1620_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1621_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1622_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1623_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1624_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1625_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1626_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1627_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1628_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1629_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1630_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1631_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1632_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1633_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1634_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1635_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1636_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1637_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1638_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1639_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1640_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1641_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1642_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1643_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1644_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1645_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1646_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1647_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1648_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1649_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1650_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1651_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1652_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1653_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1654_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1655_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1656_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1657_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1658_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1659_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1660_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1661_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1662_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1663_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1664_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1665_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1666_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1667_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1668_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1669_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1670_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1671_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1672_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1673_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1674_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1675_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1676_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1677_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1678_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1679_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1680_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1681_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1682_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1683_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1684_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1685_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1686_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1687_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1688_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1689_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1690_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1691_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1692_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1693_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1694_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1695_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1696_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1697_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1698_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1699_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1700_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1701_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1702_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1703_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1704_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1705_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1706_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1707_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1708_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1709_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1710_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1711_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1712_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1713_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1714_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1715_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1716_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1717_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1718_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1719_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1720_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1721_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1722_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1723_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1724_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1725_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1726_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1727_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1728_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1729_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1730_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1731_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1732_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1733_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1734_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1735_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1736_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1737_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1738_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1739_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1740_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1741_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1742_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1743_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1744_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1745_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1746_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1747_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1748_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1749_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1750_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1751_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1752_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1753_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1754_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1755_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1756_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1757_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1758_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1759_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1760_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1761_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1762_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1763_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1764_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1765_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1766_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1767_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1768_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1769_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1770_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1771_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1772_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1773_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1774_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1775_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1776_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1777_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1778_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1779_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1780_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1781_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1782_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1783_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1784_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1785_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1786_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1787_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1788_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1789_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1790_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1791_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1792_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1793_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1794_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1795_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1796_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1797_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1798_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1799_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1800_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1801_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1802_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1803_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1804_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1805_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1806_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1807_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1808_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1809_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1810_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1811_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1812_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1813_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1814_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1815_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1816_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1817_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1818_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1819_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1820_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1821_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1822_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1823_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1824_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1825_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1826_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1827_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1828_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1829_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1830_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1831_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1832_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1833_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1834_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1835_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1836_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1837_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1838_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1839_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1840_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1841_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1842_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1843_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1844_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1845_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1846_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1847_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1848_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1849_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1850_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1851_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1852_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1853_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1854_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1855_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1856_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1857_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1858_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1859_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1860_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1861_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1862_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1863_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1864_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1865_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1866_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1867_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1868_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1869_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1870_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1871_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1872_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1873_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1874_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1875_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1876_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1877_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1878_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1879_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1880_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1881_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1882_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1883_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1884_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1885_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1886_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1887_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1888_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1889_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1890_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1891_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1892_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1893_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1894_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1895_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1896_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1897_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1898_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1899_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1900_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1901_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1902_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1903_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1904_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1905_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1906_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1907_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1908_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1909_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1910_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1911_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1912_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1913_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1914_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1915_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1916_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1917_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1918_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1919_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1920_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1921_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1922_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1923_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1924_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1925_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1926_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1927_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1928_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1929_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1930_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1931_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1932_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1933_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1934_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1935_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1936_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1937_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1938_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1939_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1940_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1941_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1942_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1943_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1944_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1945_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1946_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1947_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1948_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1949_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1950_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1951_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1952_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1953_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1954_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1955_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1956_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1957_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1958_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1959_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1960_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1961_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1962_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1963_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1964_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1965_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1966_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1967_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1968_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1969_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1970_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1971_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1972_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1973_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1974_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1975_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1976_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1977_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1978_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1979_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1980_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1981_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1982_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1983_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1984_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1985_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1986_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1987_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1988_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1989_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1990_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1991_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1992_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1993_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1994_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1995_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1996_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1997_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1998_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg1999_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2000_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2001_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2002_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2003_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2004_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2005_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2006_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2007_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2008_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2009_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2010_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2011_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2012_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2013_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2014_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2015_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2016_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2017_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2018_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2019_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2020_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2021_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2022_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2023_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2024_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2025_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2026_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2027_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2028_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2029_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2030_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2031_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2032_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2033_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2034_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2035_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2036_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2037_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2038_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2039_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2040_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2041_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2042_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2043_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2044_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2045_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2046_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2047_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2048_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2049_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2050_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2051_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2052_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2053_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2054_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2055_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2056_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2057_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2058_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2059_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2060_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2061_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2062_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2063_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2064_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2065_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2066_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2067_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2068_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2069_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2070_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2071_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2072_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2073_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2074_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2075_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2076_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2077_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2078_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2079_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2080_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2081_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2082_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2083_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2084_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2085_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2086_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2087_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2088_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2089_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2090_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2091_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2092_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2093_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2094_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2095_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2096_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2097_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2098_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2099_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2100_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2101_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2102_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2103_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2104_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2105_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2106_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2107_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2108_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2109_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2110_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2111_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2112_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2113_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2114_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2115_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2116_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2117_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2118_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2119_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2120_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2121_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2122_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2123_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2124_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2125_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2126_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2127_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2128_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2129_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2130_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2131_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2132_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2133_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2134_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2135_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2136_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2137_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2138_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2139_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2140_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2141_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2142_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2143_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2144_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2145_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2146_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2147_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2148_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2149_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2150_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2151_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2152_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2153_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2154_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2155_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2156_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2157_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2158_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2159_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2160_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2161_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2162_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2163_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2164_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2165_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2166_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2167_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2168_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2169_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2170_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2171_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2172_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2173_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2174_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2175_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2176_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2177_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2178_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2179_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2180_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2181_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2182_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| arg2183_1 = rand_strided((), (), device='cpu', dtype=torch.float32) | |
| print_performance(lambda: call([arg0_1, arg1_1, arg2_1, arg3_1, arg4_1, arg5_1, arg6_1, arg7_1, arg8_1, arg9_1, arg10_1, arg11_1, arg12_1, arg13_1, arg14_1, arg15_1, arg16_1, arg17_1, arg18_1, arg19_1, arg20_1, arg21_1, arg22_1, arg23_1, arg24_1, arg25_1, arg26_1, arg27_1, arg28_1, arg29_1, arg30_1, arg31_1, arg32_1, arg33_1, arg34_1, arg35_1, arg36_1, arg37_1, arg38_1, arg39_1, arg40_1, arg41_1, arg42_1, arg43_1, arg44_1, arg45_1, arg46_1, arg47_1, arg48_1, arg49_1, arg50_1, arg51_1, arg52_1, arg53_1, arg54_1, arg55_1, arg56_1, arg57_1, arg58_1, arg59_1, arg60_1, arg61_1, arg62_1, arg63_1, arg64_1, arg65_1, arg66_1, arg67_1, arg68_1, arg69_1, arg70_1, arg71_1, arg72_1, arg73_1, arg74_1, arg75_1, arg76_1, arg77_1, arg78_1, arg79_1, arg80_1, arg81_1, arg82_1, arg83_1, arg84_1, arg85_1, arg86_1, arg87_1, arg88_1, arg89_1, arg90_1, arg91_1, arg92_1, arg93_1, arg94_1, arg95_1, arg96_1, arg97_1, arg98_1, arg99_1, arg100_1, arg101_1, arg102_1, arg103_1, arg104_1, arg105_1, arg106_1, arg107_1, arg108_1, arg109_1, arg110_1, arg111_1, arg112_1, arg113_1, arg114_1, arg115_1, arg116_1, arg117_1, arg118_1, arg119_1, arg120_1, arg121_1, arg122_1, arg123_1, arg124_1, arg125_1, arg126_1, arg127_1, arg128_1, arg129_1, arg130_1, arg131_1, arg132_1, arg133_1, arg134_1, arg135_1, arg136_1, arg137_1, arg138_1, arg139_1, arg140_1, arg141_1, arg142_1, arg143_1, arg144_1, arg145_1, arg146_1, arg147_1, arg148_1, arg149_1, arg150_1, arg151_1, arg152_1, arg153_1, arg154_1, arg155_1, arg156_1, arg157_1, arg158_1, arg159_1, arg160_1, arg161_1, arg162_1, arg163_1, arg164_1, arg165_1, arg166_1, arg167_1, arg168_1, arg169_1, arg170_1, arg171_1, arg172_1, arg173_1, arg174_1, arg175_1, arg176_1, arg177_1, arg178_1, arg179_1, arg180_1, arg181_1, arg182_1, arg183_1, arg184_1, arg185_1, arg186_1, arg187_1, arg188_1, arg189_1, arg190_1, arg191_1, arg192_1, arg193_1, arg194_1, arg195_1, arg196_1, arg197_1, arg198_1, arg199_1, arg200_1, arg201_1, arg202_1, arg203_1, arg204_1, arg205_1, arg206_1, arg207_1, arg208_1, arg209_1, arg210_1, arg211_1, arg212_1, arg213_1, arg214_1, arg215_1, arg216_1, arg217_1, arg218_1, arg219_1, arg220_1, arg221_1, arg222_1, arg223_1, arg224_1, arg225_1, arg226_1, arg227_1, arg228_1, arg229_1, arg230_1, arg231_1, arg232_1, arg233_1, arg234_1, arg235_1, arg236_1, arg237_1, arg238_1, arg239_1, arg240_1, arg241_1, arg242_1, arg243_1, arg244_1, arg245_1, arg246_1, arg247_1, arg248_1, arg249_1, arg250_1, arg251_1, arg252_1, arg253_1, arg254_1, arg255_1, arg256_1, arg257_1, arg258_1, arg259_1, arg260_1, arg261_1, arg262_1, arg263_1, arg264_1, arg265_1, arg266_1, arg267_1, arg268_1, arg269_1, arg270_1, arg271_1, arg272_1, arg273_1, arg274_1, arg275_1, arg276_1, arg277_1, arg278_1, arg279_1, arg280_1, arg281_1, arg282_1, arg283_1, arg284_1, arg285_1, arg286_1, arg287_1, arg288_1, arg289_1, arg290_1, arg291_1, arg292_1, arg293_1, arg294_1, arg295_1, arg296_1, arg297_1, arg298_1, arg299_1, arg300_1, arg301_1, arg302_1, arg303_1, arg304_1, arg305_1, arg306_1, arg307_1, arg308_1, arg309_1, arg310_1, arg311_1, arg312_1, arg313_1, arg314_1, arg315_1, arg316_1, arg317_1, arg318_1, arg319_1, arg320_1, arg321_1, arg322_1, arg323_1, arg324_1, arg325_1, arg326_1, arg327_1, arg328_1, arg329_1, arg330_1, arg331_1, arg332_1, arg333_1, arg334_1, arg335_1, arg336_1, arg337_1, arg338_1, arg339_1, arg340_1, arg341_1, arg342_1, arg343_1, arg344_1, arg345_1, arg346_1, arg347_1, arg348_1, arg349_1, arg350_1, arg351_1, arg352_1, arg353_1, arg354_1, arg355_1, arg356_1, arg357_1, arg358_1, arg359_1, arg360_1, arg361_1, arg362_1, arg363_1, arg364_1, arg365_1, arg366_1, arg367_1, arg368_1, arg369_1, arg370_1, arg371_1, arg372_1, arg373_1, arg374_1, arg375_1, arg376_1, arg377_1, arg378_1, arg379_1, arg380_1, arg381_1, arg382_1, arg383_1, arg384_1, arg385_1, arg386_1, arg387_1, arg388_1, arg389_1, arg390_1, arg391_1, arg392_1, arg393_1, arg394_1, arg395_1, arg396_1, arg397_1, arg398_1, arg399_1, arg400_1, arg401_1, arg402_1, arg403_1, arg404_1, arg405_1, arg406_1, arg407_1, arg408_1, arg409_1, arg410_1, arg411_1, arg412_1, arg413_1, arg414_1, arg415_1, arg416_1, arg417_1, arg418_1, arg419_1, arg420_1, arg421_1, arg422_1, arg423_1, arg424_1, arg425_1, arg426_1, arg427_1, arg428_1, arg429_1, arg430_1, arg431_1, arg432_1, arg433_1, arg434_1, arg435_1, arg436_1, arg437_1, arg438_1, arg439_1, arg440_1, arg441_1, arg442_1, arg443_1, arg444_1, arg445_1, arg446_1, arg447_1, arg448_1, arg449_1, arg450_1, arg451_1, arg452_1, arg453_1, arg454_1, arg455_1, arg456_1, arg457_1, arg458_1, arg459_1, arg460_1, arg461_1, arg462_1, arg463_1, arg464_1, arg465_1, arg466_1, arg467_1, arg468_1, arg469_1, arg470_1, arg471_1, arg472_1, arg473_1, arg474_1, arg475_1, arg476_1, arg477_1, arg478_1, arg479_1, arg480_1, arg481_1, arg482_1, arg483_1, arg484_1, arg485_1, arg486_1, arg487_1, arg488_1, arg489_1, arg490_1, arg491_1, arg492_1, arg493_1, arg494_1, arg495_1, arg496_1, arg497_1, arg498_1, arg499_1, arg500_1, arg501_1, arg502_1, arg503_1, arg504_1, arg505_1, arg506_1, arg507_1, arg508_1, arg509_1, arg510_1, arg511_1, arg512_1, arg513_1, arg514_1, arg515_1, arg516_1, arg517_1, arg518_1, arg519_1, arg520_1, arg521_1, arg522_1, arg523_1, arg524_1, arg525_1, arg526_1, arg527_1, arg528_1, arg529_1, arg530_1, arg531_1, arg532_1, arg533_1, arg534_1, arg535_1, arg536_1, arg537_1, arg538_1, arg539_1, arg540_1, arg541_1, arg542_1, arg543_1, arg544_1, arg545_1, arg546_1, arg547_1, arg548_1, arg549_1, arg550_1, arg551_1, arg552_1, arg553_1, arg554_1, arg555_1, arg556_1, arg557_1, arg558_1, arg559_1, arg560_1, arg561_1, arg562_1, arg563_1, arg564_1, arg565_1, arg566_1, arg567_1, arg568_1, arg569_1, arg570_1, arg571_1, arg572_1, arg573_1, arg574_1, arg575_1, arg576_1, arg577_1, arg578_1, arg579_1, arg580_1, arg581_1, arg582_1, arg583_1, arg584_1, arg585_1, arg586_1, arg587_1, arg588_1, arg589_1, arg590_1, arg591_1, arg592_1, arg593_1, arg594_1, arg595_1, arg596_1, arg597_1, arg598_1, arg599_1, arg600_1, arg601_1, arg602_1, arg603_1, arg604_1, arg605_1, arg606_1, arg607_1, arg608_1, arg609_1, arg610_1, arg611_1, arg612_1, arg613_1, arg614_1, arg615_1, arg616_1, arg617_1, arg618_1, arg619_1, arg620_1, arg621_1, arg622_1, arg623_1, arg624_1, arg625_1, arg626_1, arg627_1, arg628_1, arg629_1, arg630_1, arg631_1, arg632_1, arg633_1, arg634_1, arg635_1, arg636_1, arg637_1, arg638_1, arg639_1, arg640_1, arg641_1, arg642_1, arg643_1, arg644_1, arg645_1, arg646_1, arg647_1, arg648_1, arg649_1, arg650_1, arg651_1, arg652_1, arg653_1, arg654_1, arg655_1, arg656_1, arg657_1, arg658_1, arg659_1, arg660_1, arg661_1, arg662_1, arg663_1, arg664_1, arg665_1, arg666_1, arg667_1, arg668_1, arg669_1, arg670_1, arg671_1, arg672_1, arg673_1, arg674_1, arg675_1, arg676_1, arg677_1, arg678_1, arg679_1, arg680_1, arg681_1, arg682_1, arg683_1, arg684_1, arg685_1, arg686_1, arg687_1, arg688_1, arg689_1, arg690_1, arg691_1, arg692_1, arg693_1, arg694_1, arg695_1, arg696_1, arg697_1, arg698_1, arg699_1, arg700_1, arg701_1, arg702_1, arg703_1, arg704_1, arg705_1, arg706_1, arg707_1, arg708_1, arg709_1, arg710_1, arg711_1, arg712_1, arg713_1, arg714_1, arg715_1, arg716_1, arg717_1, arg718_1, arg719_1, arg720_1, arg721_1, arg722_1, arg723_1, arg724_1, arg725_1, arg726_1, arg727_1, arg728_1, arg729_1, arg730_1, arg731_1, arg732_1, arg733_1, arg734_1, arg735_1, arg736_1, arg737_1, arg738_1, arg739_1, arg740_1, arg741_1, arg742_1, arg743_1, arg744_1, arg745_1, arg746_1, arg747_1, arg748_1, arg749_1, arg750_1, arg751_1, arg752_1, arg753_1, arg754_1, arg755_1, arg756_1, arg757_1, arg758_1, arg759_1, arg760_1, arg761_1, arg762_1, arg763_1, arg764_1, arg765_1, arg766_1, arg767_1, arg768_1, arg769_1, arg770_1, arg771_1, arg772_1, arg773_1, arg774_1, arg775_1, arg776_1, arg777_1, arg778_1, arg779_1, arg780_1, arg781_1, arg782_1, arg783_1, arg784_1, arg785_1, arg786_1, arg787_1, arg788_1, arg789_1, arg790_1, arg791_1, arg792_1, arg793_1, arg794_1, arg795_1, arg796_1, arg797_1, arg798_1, arg799_1, arg800_1, arg801_1, arg802_1, arg803_1, arg804_1, arg805_1, arg806_1, arg807_1, arg808_1, arg809_1, arg810_1, arg811_1, arg812_1, arg813_1, arg814_1, arg815_1, arg816_1, arg817_1, arg818_1, arg819_1, arg820_1, arg821_1, arg822_1, arg823_1, arg824_1, arg825_1, arg826_1, arg827_1, arg828_1, arg829_1, arg830_1, arg831_1, arg832_1, arg833_1, arg834_1, arg835_1, arg836_1, arg837_1, arg838_1, arg839_1, arg840_1, arg841_1, arg842_1, arg843_1, arg844_1, arg845_1, arg846_1, arg847_1, arg848_1, arg849_1, arg850_1, arg851_1, arg852_1, arg853_1, arg854_1, arg855_1, arg856_1, arg857_1, arg858_1, arg859_1, arg860_1, arg861_1, arg862_1, arg863_1, arg864_1, arg865_1, arg866_1, arg867_1, arg868_1, arg869_1, arg870_1, arg871_1, arg872_1, arg873_1, arg874_1, arg875_1, arg876_1, arg877_1, arg878_1, arg879_1, arg880_1, arg881_1, arg882_1, arg883_1, arg884_1, arg885_1, arg886_1, arg887_1, arg888_1, arg889_1, arg890_1, arg891_1, arg892_1, arg893_1, arg894_1, arg895_1, arg896_1, arg897_1, arg898_1, arg899_1, arg900_1, arg901_1, arg902_1, arg903_1, arg904_1, arg905_1, arg906_1, arg907_1, arg908_1, arg909_1, arg910_1, arg911_1, arg912_1, arg913_1, arg914_1, arg915_1, arg916_1, arg917_1, arg918_1, arg919_1, arg920_1, arg921_1, arg922_1, arg923_1, arg924_1, arg925_1, arg926_1, arg927_1, arg928_1, arg929_1, arg930_1, arg931_1, arg932_1, arg933_1, arg934_1, arg935_1, arg936_1, arg937_1, arg938_1, arg939_1, arg940_1, arg941_1, arg942_1, arg943_1, arg944_1, arg945_1, arg946_1, arg947_1, arg948_1, arg949_1, arg950_1, arg951_1, arg952_1, arg953_1, arg954_1, arg955_1, arg956_1, arg957_1, arg958_1, arg959_1, arg960_1, arg961_1, arg962_1, arg963_1, arg964_1, arg965_1, arg966_1, arg967_1, arg968_1, arg969_1, arg970_1, arg971_1, arg972_1, arg973_1, arg974_1, arg975_1, arg976_1, arg977_1, arg978_1, arg979_1, arg980_1, arg981_1, arg982_1, arg983_1, arg984_1, arg985_1, arg986_1, arg987_1, arg988_1, arg989_1, arg990_1, arg991_1, arg992_1, arg993_1, arg994_1, arg995_1, arg996_1, arg997_1, arg998_1, arg999_1, arg1000_1, arg1001_1, arg1002_1, arg1003_1, arg1004_1, arg1005_1, arg1006_1, arg1007_1, arg1008_1, arg1009_1, arg1010_1, arg1011_1, arg1012_1, arg1013_1, arg1014_1, arg1015_1, arg1016_1, arg1017_1, arg1018_1, arg1019_1, arg1020_1, arg1021_1, arg1022_1, arg1023_1, arg1024_1, arg1025_1, arg1026_1, arg1027_1, arg1028_1, arg1029_1, arg1030_1, arg1031_1, arg1032_1, arg1033_1, arg1034_1, arg1035_1, arg1036_1, arg1037_1, arg1038_1, arg1039_1, arg1040_1, arg1041_1, arg1042_1, arg1043_1, arg1044_1, arg1045_1, arg1046_1, arg1047_1, arg1048_1, arg1049_1, arg1050_1, arg1051_1, arg1052_1, arg1053_1, arg1054_1, arg1055_1, arg1056_1, arg1057_1, arg1058_1, arg1059_1, arg1060_1, arg1061_1, arg1062_1, arg1063_1, arg1064_1, arg1065_1, arg1066_1, arg1067_1, arg1068_1, arg1069_1, arg1070_1, arg1071_1, arg1072_1, arg1073_1, arg1074_1, arg1075_1, arg1076_1, arg1077_1, arg1078_1, arg1079_1, arg1080_1, arg1081_1, arg1082_1, arg1083_1, arg1084_1, arg1085_1, arg1086_1, arg1087_1, arg1088_1, arg1089_1, arg1090_1, arg1091_1, arg1092_1, arg1093_1, arg1094_1, arg1095_1, arg1096_1, arg1097_1, arg1098_1, arg1099_1, arg1100_1, arg1101_1, arg1102_1, arg1103_1, arg1104_1, arg1105_1, arg1106_1, arg1107_1, arg1108_1, arg1109_1, arg1110_1, arg1111_1, arg1112_1, arg1113_1, arg1114_1, arg1115_1, arg1116_1, arg1117_1, arg1118_1, arg1119_1, arg1120_1, arg1121_1, arg1122_1, arg1123_1, arg1124_1, arg1125_1, arg1126_1, arg1127_1, arg1128_1, arg1129_1, arg1130_1, arg1131_1, arg1132_1, arg1133_1, arg1134_1, arg1135_1, arg1136_1, arg1137_1, arg1138_1, arg1139_1, arg1140_1, arg1141_1, arg1142_1, arg1143_1, arg1144_1, arg1145_1, arg1146_1, arg1147_1, arg1148_1, arg1149_1, arg1150_1, arg1151_1, arg1152_1, arg1153_1, arg1154_1, arg1155_1, arg1156_1, arg1157_1, arg1158_1, arg1159_1, arg1160_1, arg1161_1, arg1162_1, arg1163_1, arg1164_1, arg1165_1, arg1166_1, arg1167_1, arg1168_1, arg1169_1, arg1170_1, arg1171_1, arg1172_1, arg1173_1, arg1174_1, arg1175_1, arg1176_1, arg1177_1, arg1178_1, arg1179_1, arg1180_1, arg1181_1, arg1182_1, arg1183_1, arg1184_1, arg1185_1, arg1186_1, arg1187_1, arg1188_1, arg1189_1, arg1190_1, arg1191_1, arg1192_1, arg1193_1, arg1194_1, arg1195_1, arg1196_1, arg1197_1, arg1198_1, arg1199_1, arg1200_1, arg1201_1, arg1202_1, arg1203_1, arg1204_1, arg1205_1, arg1206_1, arg1207_1, arg1208_1, arg1209_1, arg1210_1, arg1211_1, arg1212_1, arg1213_1, arg1214_1, arg1215_1, arg1216_1, arg1217_1, arg1218_1, arg1219_1, arg1220_1, arg1221_1, arg1222_1, arg1223_1, arg1224_1, arg1225_1, arg1226_1, arg1227_1, arg1228_1, arg1229_1, arg1230_1, arg1231_1, arg1232_1, arg1233_1, arg1234_1, arg1235_1, arg1236_1, arg1237_1, arg1238_1, arg1239_1, arg1240_1, arg1241_1, arg1242_1, arg1243_1, arg1244_1, arg1245_1, arg1246_1, arg1247_1, arg1248_1, arg1249_1, arg1250_1, arg1251_1, arg1252_1, arg1253_1, arg1254_1, arg1255_1, arg1256_1, arg1257_1, arg1258_1, arg1259_1, arg1260_1, arg1261_1, arg1262_1, arg1263_1, arg1264_1, arg1265_1, arg1266_1, arg1267_1, arg1268_1, arg1269_1, arg1270_1, arg1271_1, arg1272_1, arg1273_1, arg1274_1, arg1275_1, arg1276_1, arg1277_1, arg1278_1, arg1279_1, arg1280_1, arg1281_1, arg1282_1, arg1283_1, arg1284_1, arg1285_1, arg1286_1, arg1287_1, arg1288_1, arg1289_1, arg1290_1, arg1291_1, arg1292_1, arg1293_1, arg1294_1, arg1295_1, arg1296_1, arg1297_1, arg1298_1, arg1299_1, arg1300_1, arg1301_1, arg1302_1, arg1303_1, arg1304_1, arg1305_1, arg1306_1, arg1307_1, arg1308_1, arg1309_1, arg1310_1, arg1311_1, arg1312_1, arg1313_1, arg1314_1, arg1315_1, arg1316_1, arg1317_1, arg1318_1, arg1319_1, arg1320_1, arg1321_1, arg1322_1, arg1323_1, arg1324_1, arg1325_1, arg1326_1, arg1327_1, arg1328_1, arg1329_1, arg1330_1, arg1331_1, arg1332_1, arg1333_1, arg1334_1, arg1335_1, arg1336_1, arg1337_1, arg1338_1, arg1339_1, arg1340_1, arg1341_1, arg1342_1, arg1343_1, arg1344_1, arg1345_1, arg1346_1, arg1347_1, arg1348_1, arg1349_1, arg1350_1, arg1351_1, arg1352_1, arg1353_1, arg1354_1, arg1355_1, arg1356_1, arg1357_1, arg1358_1, arg1359_1, arg1360_1, arg1361_1, arg1362_1, arg1363_1, arg1364_1, arg1365_1, arg1366_1, arg1367_1, arg1368_1, arg1369_1, arg1370_1, arg1371_1, arg1372_1, arg1373_1, arg1374_1, arg1375_1, arg1376_1, arg1377_1, arg1378_1, arg1379_1, arg1380_1, arg1381_1, arg1382_1, arg1383_1, arg1384_1, arg1385_1, arg1386_1, arg1387_1, arg1388_1, arg1389_1, arg1390_1, arg1391_1, arg1392_1, arg1393_1, arg1394_1, arg1395_1, arg1396_1, arg1397_1, arg1398_1, arg1399_1, arg1400_1, arg1401_1, arg1402_1, arg1403_1, arg1404_1, arg1405_1, arg1406_1, arg1407_1, arg1408_1, arg1409_1, arg1410_1, arg1411_1, arg1412_1, arg1413_1, arg1414_1, arg1415_1, arg1416_1, arg1417_1, arg1418_1, arg1419_1, arg1420_1, arg1421_1, arg1422_1, arg1423_1, arg1424_1, arg1425_1, arg1426_1, arg1427_1, arg1428_1, arg1429_1, arg1430_1, arg1431_1, arg1432_1, arg1433_1, arg1434_1, arg1435_1, arg1436_1, arg1437_1, arg1438_1, arg1439_1, arg1440_1, arg1441_1, arg1442_1, arg1443_1, arg1444_1, arg1445_1, arg1446_1, arg1447_1, arg1448_1, arg1449_1, arg1450_1, arg1451_1, arg1452_1, arg1453_1, arg1454_1, arg1455_1, arg1456_1, arg1457_1, arg1458_1, arg1459_1, arg1460_1, arg1461_1, arg1462_1, arg1463_1, arg1464_1, arg1465_1, arg1466_1, arg1467_1, arg1468_1, arg1469_1, arg1470_1, arg1471_1, arg1472_1, arg1473_1, arg1474_1, arg1475_1, arg1476_1, arg1477_1, arg1478_1, arg1479_1, arg1480_1, arg1481_1, arg1482_1, arg1483_1, arg1484_1, arg1485_1, arg1486_1, arg1487_1, arg1488_1, arg1489_1, arg1490_1, arg1491_1, arg1492_1, arg1493_1, arg1494_1, arg1495_1, arg1496_1, arg1497_1, arg1498_1, arg1499_1, arg1500_1, arg1501_1, arg1502_1, arg1503_1, arg1504_1, arg1505_1, arg1506_1, arg1507_1, arg1508_1, arg1509_1, arg1510_1, arg1511_1, arg1512_1, arg1513_1, arg1514_1, arg1515_1, arg1516_1, arg1517_1, arg1518_1, arg1519_1, arg1520_1, arg1521_1, arg1522_1, arg1523_1, arg1524_1, arg1525_1, arg1526_1, arg1527_1, arg1528_1, arg1529_1, arg1530_1, arg1531_1, arg1532_1, arg1533_1, arg1534_1, arg1535_1, arg1536_1, arg1537_1, arg1538_1, arg1539_1, arg1540_1, arg1541_1, arg1542_1, arg1543_1, arg1544_1, arg1545_1, arg1546_1, arg1547_1, arg1548_1, arg1549_1, arg1550_1, arg1551_1, arg1552_1, arg1553_1, arg1554_1, arg1555_1, arg1556_1, arg1557_1, arg1558_1, arg1559_1, arg1560_1, arg1561_1, arg1562_1, arg1563_1, arg1564_1, arg1565_1, arg1566_1, arg1567_1, arg1568_1, arg1569_1, arg1570_1, arg1571_1, arg1572_1, arg1573_1, arg1574_1, arg1575_1, arg1576_1, arg1577_1, arg1578_1, arg1579_1, arg1580_1, arg1581_1, arg1582_1, arg1583_1, arg1584_1, arg1585_1, arg1586_1, arg1587_1, arg1588_1, arg1589_1, arg1590_1, arg1591_1, arg1592_1, arg1593_1, arg1594_1, arg1595_1, arg1596_1, arg1597_1, arg1598_1, arg1599_1, arg1600_1, arg1601_1, arg1602_1, arg1603_1, arg1604_1, arg1605_1, arg1606_1, arg1607_1, arg1608_1, arg1609_1, arg1610_1, arg1611_1, arg1612_1, arg1613_1, arg1614_1, arg1615_1, arg1616_1, arg1617_1, arg1618_1, arg1619_1, arg1620_1, arg1621_1, arg1622_1, arg1623_1, arg1624_1, arg1625_1, arg1626_1, arg1627_1, arg1628_1, arg1629_1, arg1630_1, arg1631_1, arg1632_1, arg1633_1, arg1634_1, arg1635_1, arg1636_1, arg1637_1, arg1638_1, arg1639_1, arg1640_1, arg1641_1, arg1642_1, arg1643_1, arg1644_1, arg1645_1, arg1646_1, arg1647_1, arg1648_1, arg1649_1, arg1650_1, arg1651_1, arg1652_1, arg1653_1, arg1654_1, arg1655_1, arg1656_1, arg1657_1, arg1658_1, arg1659_1, arg1660_1, arg1661_1, arg1662_1, arg1663_1, arg1664_1, arg1665_1, arg1666_1, arg1667_1, arg1668_1, arg1669_1, arg1670_1, arg1671_1, arg1672_1, arg1673_1, arg1674_1, arg1675_1, arg1676_1, arg1677_1, arg1678_1, arg1679_1, arg1680_1, arg1681_1, arg1682_1, arg1683_1, arg1684_1, arg1685_1, arg1686_1, arg1687_1, arg1688_1, arg1689_1, arg1690_1, arg1691_1, arg1692_1, arg1693_1, arg1694_1, arg1695_1, arg1696_1, arg1697_1, arg1698_1, arg1699_1, arg1700_1, arg1701_1, arg1702_1, arg1703_1, arg1704_1, arg1705_1, arg1706_1, arg1707_1, arg1708_1, arg1709_1, arg1710_1, arg1711_1, arg1712_1, arg1713_1, arg1714_1, arg1715_1, arg1716_1, arg1717_1, arg1718_1, arg1719_1, arg1720_1, arg1721_1, arg1722_1, arg1723_1, arg1724_1, arg1725_1, arg1726_1, arg1727_1, arg1728_1, arg1729_1, arg1730_1, arg1731_1, arg1732_1, arg1733_1, arg1734_1, arg1735_1, arg1736_1, arg1737_1, arg1738_1, arg1739_1, arg1740_1, arg1741_1, arg1742_1, arg1743_1, arg1744_1, arg1745_1, arg1746_1, arg1747_1, arg1748_1, arg1749_1, arg1750_1, arg1751_1, arg1752_1, arg1753_1, arg1754_1, arg1755_1, arg1756_1, arg1757_1, arg1758_1, arg1759_1, arg1760_1, arg1761_1, arg1762_1, arg1763_1, arg1764_1, arg1765_1, arg1766_1, arg1767_1, arg1768_1, arg1769_1, arg1770_1, arg1771_1, arg1772_1, arg1773_1, arg1774_1, arg1775_1, arg1776_1, arg1777_1, arg1778_1, arg1779_1, arg1780_1, arg1781_1, arg1782_1, arg1783_1, arg1784_1, arg1785_1, arg1786_1, arg1787_1, arg1788_1, arg1789_1, arg1790_1, arg1791_1, arg1792_1, arg1793_1, arg1794_1, arg1795_1, arg1796_1, arg1797_1, arg1798_1, arg1799_1, arg1800_1, arg1801_1, arg1802_1, arg1803_1, arg1804_1, arg1805_1, arg1806_1, arg1807_1, arg1808_1, arg1809_1, arg1810_1, arg1811_1, arg1812_1, arg1813_1, arg1814_1, arg1815_1, arg1816_1, arg1817_1, arg1818_1, arg1819_1, arg1820_1, arg1821_1, arg1822_1, arg1823_1, arg1824_1, arg1825_1, arg1826_1, arg1827_1, arg1828_1, arg1829_1, arg1830_1, arg1831_1, arg1832_1, arg1833_1, arg1834_1, arg1835_1, arg1836_1, arg1837_1, arg1838_1, arg1839_1, arg1840_1, arg1841_1, arg1842_1, arg1843_1, arg1844_1, arg1845_1, arg1846_1, arg1847_1, arg1848_1, arg1849_1, arg1850_1, arg1851_1, arg1852_1, arg1853_1, arg1854_1, arg1855_1, arg1856_1, arg1857_1, arg1858_1, arg1859_1, arg1860_1, arg1861_1, arg1862_1, arg1863_1, arg1864_1, arg1865_1, arg1866_1, arg1867_1, arg1868_1, arg1869_1, arg1870_1, arg1871_1, arg1872_1, arg1873_1, arg1874_1, arg1875_1, arg1876_1, arg1877_1, arg1878_1, arg1879_1, arg1880_1, arg1881_1, arg1882_1, arg1883_1, arg1884_1, arg1885_1, arg1886_1, arg1887_1, arg1888_1, arg1889_1, arg1890_1, arg1891_1, arg1892_1, arg1893_1, arg1894_1, arg1895_1, arg1896_1, arg1897_1, arg1898_1, arg1899_1, arg1900_1, arg1901_1, arg1902_1, arg1903_1, arg1904_1, arg1905_1, arg1906_1, arg1907_1, arg1908_1, arg1909_1, arg1910_1, arg1911_1, arg1912_1, arg1913_1, arg1914_1, arg1915_1, arg1916_1, arg1917_1, arg1918_1, arg1919_1, arg1920_1, arg1921_1, arg1922_1, arg1923_1, arg1924_1, arg1925_1, arg1926_1, arg1927_1, arg1928_1, arg1929_1, arg1930_1, arg1931_1, arg1932_1, arg1933_1, arg1934_1, arg1935_1, arg1936_1, arg1937_1, arg1938_1, arg1939_1, arg1940_1, arg1941_1, arg1942_1, arg1943_1, arg1944_1, arg1945_1, arg1946_1, arg1947_1, arg1948_1, arg1949_1, arg1950_1, arg1951_1, arg1952_1, arg1953_1, arg1954_1, arg1955_1, arg1956_1, arg1957_1, arg1958_1, arg1959_1, arg1960_1, arg1961_1, arg1962_1, arg1963_1, arg1964_1, arg1965_1, arg1966_1, arg1967_1, arg1968_1, arg1969_1, arg1970_1, arg1971_1, arg1972_1, arg1973_1, arg1974_1, arg1975_1, arg1976_1, arg1977_1, arg1978_1, arg1979_1, arg1980_1, arg1981_1, arg1982_1, arg1983_1, arg1984_1, arg1985_1, arg1986_1, arg1987_1, arg1988_1, arg1989_1, arg1990_1, arg1991_1, arg1992_1, arg1993_1, arg1994_1, arg1995_1, arg1996_1, arg1997_1, arg1998_1, arg1999_1, arg2000_1, arg2001_1, arg2002_1, arg2003_1, arg2004_1, arg2005_1, arg2006_1, arg2007_1, arg2008_1, arg2009_1, arg2010_1, arg2011_1, arg2012_1, arg2013_1, arg2014_1, arg2015_1, arg2016_1, arg2017_1, arg2018_1, arg2019_1, arg2020_1, arg2021_1, arg2022_1, arg2023_1, arg2024_1, arg2025_1, arg2026_1, arg2027_1, arg2028_1, arg2029_1, arg2030_1, arg2031_1, arg2032_1, arg2033_1, arg2034_1, arg2035_1, arg2036_1, arg2037_1, arg2038_1, arg2039_1, arg2040_1, arg2041_1, arg2042_1, arg2043_1, arg2044_1, arg2045_1, arg2046_1, arg2047_1, arg2048_1, arg2049_1, arg2050_1, arg2051_1, arg2052_1, arg2053_1, arg2054_1, arg2055_1, arg2056_1, arg2057_1, arg2058_1, arg2059_1, arg2060_1, arg2061_1, arg2062_1, arg2063_1, arg2064_1, arg2065_1, arg2066_1, arg2067_1, arg2068_1, arg2069_1, arg2070_1, arg2071_1, arg2072_1, arg2073_1, arg2074_1, arg2075_1, arg2076_1, arg2077_1, arg2078_1, arg2079_1, arg2080_1, arg2081_1, arg2082_1, arg2083_1, arg2084_1, arg2085_1, arg2086_1, arg2087_1, arg2088_1, arg2089_1, arg2090_1, arg2091_1, arg2092_1, arg2093_1, arg2094_1, arg2095_1, arg2096_1, arg2097_1, arg2098_1, arg2099_1, arg2100_1, arg2101_1, arg2102_1, arg2103_1, arg2104_1, arg2105_1, arg2106_1, arg2107_1, arg2108_1, arg2109_1, arg2110_1, arg2111_1, arg2112_1, arg2113_1, arg2114_1, arg2115_1, arg2116_1, arg2117_1, arg2118_1, arg2119_1, arg2120_1, arg2121_1, arg2122_1, arg2123_1, arg2124_1, arg2125_1, arg2126_1, arg2127_1, arg2128_1, arg2129_1, arg2130_1, arg2131_1, arg2132_1, arg2133_1, arg2134_1, arg2135_1, arg2136_1, arg2137_1, arg2138_1, arg2139_1, arg2140_1, arg2141_1, arg2142_1, arg2143_1, arg2144_1, arg2145_1, arg2146_1, arg2147_1, arg2148_1, arg2149_1, arg2150_1, arg2151_1, arg2152_1, arg2153_1, arg2154_1, arg2155_1, arg2156_1, arg2157_1, arg2158_1, arg2159_1, arg2160_1, arg2161_1, arg2162_1, arg2163_1, arg2164_1, arg2165_1, arg2166_1, arg2167_1, arg2168_1, arg2169_1, arg2170_1, arg2171_1, arg2172_1, arg2173_1, arg2174_1, arg2175_1, arg2176_1, arg2177_1, arg2178_1, arg2179_1, arg2180_1, arg2181_1, arg2182_1, arg2183_1])) | |
| if __name__ == "__main__": | |
| import argparse | |
| from torch._inductor.utils import benchmark_all_kernels | |
| parser = argparse.ArgumentParser() | |
| parser.add_argument("--benchmark-kernels", "-k", action="store_true", help="Whether to benchmark each individual kernels") | |
| parser.add_argument("--benchmark-all-configs", "-c", action="store_true", help="Whether to benchmark each individual config for a kernel") | |
| args = parser.parse_args() | |
| if args.benchmark_kernels: | |
| benchmark_all_kernels('None', args.benchmark_all_configs) | |
| else: | |
| benchmark_compiled_module() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment